Last active
July 17, 2026 20:12
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==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