拦截Google快照跳转

某些站点会在Google快照页面强行跳转离开,然而可能目标页面早已404,此脚本用来阻止跳转

目前为 2023-10-12 提交的版本。查看 最新版本

// ==UserScript==
// @name         拦截Google快照跳转
// @namespace    https://webcache.googleusercontent
// @version      1.0
// @description  某些站点会在Google快照页面强行跳转离开,然而可能目标页面早已404,此脚本用来阻止跳转
// @author       PatrickZ
// @match        https://webcache.googleusercontent.com/search?q=cache:*
// @run-at       document-start
// @license      MIT
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    window.onbeforeunload = function() {
        return "Are you sure?";
    };

})();

QingJ © 2025

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