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;
});