Disable window.open

Disable window.open function and Disable popup window

  1. // ==UserScript==
  2. // @name Disable window.open
  3. // @namespace https://greasyfork.org/en/scripts/455585-disable-window-open
  4. // @version 0.1
  5. // @description Disable window.open function and Disable popup window
  6. // @author TechComet
  7. // @match http://*/*
  8. // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. window.open = function() {};
  17.  
  18. })();