Bypass Paste Protection

Simple script to disable "onPaste" event listener to prevent "paste" action.

// ==UserScript==
// @name         Bypass Paste Protection
// @namespace    Bypass Paste Protection
// @version      v1.2
// @description  Simple script to disable "onPaste" event listener to prevent "paste" action.
// @author       MichelMarchand
// @match        *://*/*
// @match        http://*/
// @match        https://*/
// @exclude      https://web.whatsapp.com/*
// @exclude      https://docs.google.com/spreadsheets*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
   var allowPaste = function(e){
  e.stopImmediatePropagation();
  return true;
};
document.addEventListener('paste', allowPaste, true);
})();