Redirector Script

Redirects specified URLs to target URLs

  1. // ==UserScript==
  2. // @name Redirector Script
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Redirects specified URLs to target URLs
  6. // @author You
  7. // @match https://www.google.com/*
  8. // @match https://oldgoogle.neocities.org/2010/webhp?hl=en
  9. // @match https://www.google.com/search?hl=en&ie=ISO-8859-1&q=*
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. window.location.href = window.location.href.replace("https://www.google.com/", "https://google2002.neocities.org/");
  16. })();

QingJ © 2025

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