知乎首页防意外刷新

浏览知乎主页时防止意外触发的页面刷新

目前为 2023-09-08 提交的版本。查看 最新版本

// ==UserScript==
// @name         知乎首页防意外刷新
// @version      0.1.1
// @description  浏览知乎主页时防止意外触发的页面刷新
// @author       Rubbe
// @grant        GM_notification
// @match        *://www.zhihu.com/
// @copyright    2023, Rubbe
// @license      MIT
// @namespace https://gf.qytechs.cn/users/1168752
// ==/UserScript==

(function() {
    'use strict';
    const preventReload = ()=>{
        window.addEventListener("beforeunload", function (e) {
            e.preventDefault();     // default
            (e || window.event).returnValue = "";   // chrome
            return "";  //old browsers 
        });
    };
    preventReload();
})();

QingJ © 2025

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