Disable Confirmation Dialog When Leaving A Web Page

Disable confirmation dialog when leaving a web page

2016/12/13のページです。最新版はこちら

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==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;