Disable confirmation dialog when leaving a web page
当前为
// ==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;
});