Copy Paste Cut

removes shits that prevent copy pasting on any site

  1. // ==UserScript==
  2. // @name Copy Paste Cut
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0.1
  5. // @author Big watermelon
  6. // @description removes shits that prevent copy pasting on any site
  7. // @match *://*/*
  8. // @license GPL-3.0-or-later
  9. // @icon https://images.emojiterra.com/openmoji/v15.0/128px/2702.png
  10. // @grant none
  11. // @run-at document-start
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16.  
  17. window.ClipboardEvent.prototype.preventDefault = () => {};
  18. })();