oncopy=null

Literally add document.oncopy=null to pages.

  1. // ==UserScript==
  2. // @name oncopy=null
  3. // @namespace https://github.com/zamber/oncopy-null
  4. // @description Literally add document.oncopy=null to pages.
  5. // @version 0.1
  6. // @author http://piotr.zaborowski.pro/
  7. // @encoding utf-8
  8. // @license https://creativecommons.org/licenses/by-sa/4.0/
  9. // @homepage https://github.com/zamber/oncopy-null
  10. // @twitterURL https://twitter.com/zamber
  11. // @supportURL https://github.com/zamber/oncopy-null/issues
  12. // @include http://*/*
  13. // @include https://*/*
  14. // @grant none
  15. // ==/UserScript==
  16.  
  17. (function() {
  18. 'use strict';
  19.  
  20. document.oncopy = null;
  21. })();