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 // @author jcunews // @include http://*/* // @include https://*/* // @version 1 // @grant none // ==/UserScript== window.onbeforeunload = null;