知乎首页跳转保护

为知乎主页(仅)的跳转行为作加上反悔选项,防止意外的 推荐回答页 刷新

// ==UserScript==
// @name         知乎首页跳转保护
// @version      1.0.0
// @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或关注我们的公众号极客氢云获取最新地址