某些站点会在Google快照页面强行跳转离开,然而可能目标页面早已404,此脚本用来阻止跳转
当前为
// ==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?";
};
})();