Disable page close confirmation

Disable page close confirmation (onBeforeUnload)

当前为 2015-07-23 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Disable page close confirmation
  3. // @description Disable page close confirmation (onBeforeUnload)
  4. // @namespace http://nags.must.die
  5. // @version 1.1
  6. // @grant none
  7. // @run-at document-end
  8. // ==/UserScript==
  9.  
  10. window.onbeforeunload = null;
  11. window.onunload = null;
  12.  
  13. window.addEventListener('beforeunload', function(e) {
  14. window.onbeforeunload = null;
  15. window.onunload = null;
  16. });