Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save elliotberry/2b1e6c4e216b9bdaaf51cb9442229927 to your computer and use it in GitHub Desktop.

Select an option

Save elliotberry/2b1e6c4e216b9bdaaf51cb9442229927 to your computer and use it in GitHub Desktop.
allow me to copy and paste or i will find your family and destroy them.user.js
// ==UserScript==
// @name allow me to copy and paste or i will find your family and destroy them
// @namespace Violentmonkey Scripts
// @match *://*/*
// @grant none
// @version 1.0.2
// @author elliot
// @downloadURL https://gist.github.com/elliotberry/2b1e6c4e216b9bdaaf51cb9442229927/raw/
// @updateURL https://gist.github.com/elliotberry/2b1e6c4e216b9bdaaf51cb9442229927/raw/
// @description 10/4/2023, 11:43:04 PM
// ==/UserScript==
const forceBrowserDefault = function(e){
e.stopImmediatePropagation();
return true;
};
document.addEventListener('copy', forceBrowserDefault, true);
document.addEventListener('cut', forceBrowserDefault, true);
document.addEventListener('paste', forceBrowserDefault, true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment