Redirector Script

Redirects specified URLs to target URLs

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

// ==UserScript==
// @name         Redirector Script
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Redirects specified URLs to target URLs
// @author       You
// @match        https://www.google.com/*
// @match        https://oldgoogle.neocities.org/2010/webhp?hl=en
// @match        https://www.google.com/search?hl=en&ie=ISO-8859-1&q=*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    window.location.href = window.location.href.replace("https://www.google.com/", "https://google2002.neocities.org/");
})();

QingJ © 2025

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