防止强制跳转

防止网页强制跳转

当前为 2024-01-07 提交的版本,查看 最新版本

// ==UserScript==
// @name         防止强制跳转
// @namespace    http://tampermonkey.net/
// @version      2024-01-07
// @description  防止网页强制跳转
// @author       share121
// @match        *://*/*
// @grant        unsafeWindow
// @license      MIT
// ==/UserScript==

unsafeWindow.addEventListener("beforeunload", (event) => {
    event.preventDefault();
    event.returnValue = "";
});

QingJ © 2025

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