Disable Confirmation Dialog When Leaving A Web Page

Disable confirmation dialog when leaving a web page

目前為 2018-03-24 提交的版本,檢視 最新版本

// ==UserScript==
// @name        Disable Confirmation Dialog When Leaving A Web Page
// @namespace   DisableConfirmationDialogWhenLeavingAWebPage
// @description Disable confirmation dialog when leaving a web page
// @license     GNU AGPLv3
// @author      jcunews
// @match       *://*/*
// @version     1.0.2
// @grant       none
// @run-at      document-start
// ==/UserScript==

window.__defineSetter__("onbeforeunload", function(a) {
 return a;
});