Disable Confirmation Dialog When Leaving A Web Page

Disable confirmation dialog when leaving a web page

当前为 2018-03-24 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Disable Confirmation Dialog When Leaving A Web Page
  3. // @namespace DisableConfirmationDialogWhenLeavingAWebPage
  4. // @description Disable confirmation dialog when leaving a web page
  5. // @license GNU AGPLv3
  6. // @author jcunews
  7. // @match *://*/*
  8. // @version 1.0.2
  9. // @grant none
  10. // @run-at document-start
  11. // ==/UserScript==
  12.  
  13. window.__defineSetter__("onbeforeunload", function(a) {
  14. return a;
  15. });