Google Image Redirect from CN

将谷歌搜索首页图片按钮的地址重定向到.com

  1. // ==UserScript==
  2. // @name Google Image Redirect from CN
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2.3
  5. // @description 将谷歌搜索首页图片按钮的地址重定向到.com
  6. // @author entr0pia
  7. // @include /^https?:\/\/www.google.com(\.[a-z]{2})?\/(webhp.*)?$/
  8. // @icon https://www.google.com/favicon.ico
  9. // @grant none
  10. // @license MIT
  11. // @run-at document-end
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16. document.body.innerHTML = document.body.innerHTML.replace(/google.cn\/imghp/g, 'google.com/imghp');
  17. })();

QingJ © 2025

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