去除页面离开提示

去除关闭页面时的提示

  1. // ==UserScript==
  2. // @name 去除页面离开提示
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description 去除关闭页面时的提示
  6. // @author kakasearch
  7. // @include *://*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=gf.qytechs.cn
  9. // @require http://cdn.staticfile.org/jquery/3.4.1/jquery.min.js
  10. // @grant none
  11. // @license MIT
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16. $(function(){
  17. $(window).unbind('beforeunload');
  18. window.onbeforeunload = null;
  19. })
  20. // Your code here...
  21. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址