去除关闭页面时的提示
// ==UserScript==
// @name 去除页面离开提示
// @namespace http://tampermonkey.net/
// @version 0.2
// @description 去除关闭页面时的提示
// @author kakasearch
// @include *://*
// @icon https://www.google.com/s2/favicons?sz=64&domain=greasyfork.org
// @require http://cdn.staticfile.org/jquery/3.4.1/jquery.min.js
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
$(function(){
$(window).unbind('beforeunload');
window.onbeforeunload = null;
})
// Your code here...
})();