Greasy Fork is available in English.

AllowRightClick&Pasta&copy&cut&drag&drop&selectstart

Active Right Click & allow Paste & copy & cut & drag & drop & selectstart

// ==UserScript==
// @name         AllowRightClick&Pasta&copy&cut&drag&drop&selectstart
// @namespace    http://tampermonkey.net/
// @version      4.1
// @description  Active Right Click & allow Paste & copy & cut & drag & drop & selectstart
// @author       MegaBOuSsOlFeatGenoCide
// @match        Your Site
// ==/UserScript==

(function() {
    void (document.oncontextmenu = null);


})();
var allowPaste = function(e){
  e.stopImmediatePropagation();
  return true;
};
document.addEventListener('paste', allowPaste, true);
var allowCopy = function(s){
  s.stopImmediatePropagation();
  return true;
};
document.addEventListener('copy', allowCopy, true);
var allowCut = function(c){
  c.stopImmediatePropagation();
  return true;
};
document.addEventListener('cut', allowCut, true);
var allowDrag = function(f){
  f.stopImmediatePropagation();
  return true;
};
document.addEventListener('drag', allowDrag, true);
var allowDrop = function(n){
  n.stopImmediatePropagation();
  return true;
};
document.addEventListener('drop', allowDrop, true);

var allowSelectstart = function(j){
  j.stopImmediatePropagation();
  return true;
};
document.addEventListener('selectstart', allowSelectstart, true);