Disable Confirmation Dialog When Leaving A Web Page

Disable confirmation dialog when leaving a web page

Ekde 2016/12/13. Vidu La ĝisdata versio.

// ==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;