Google Image Redirect from CN

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

目前为 2022-02-16 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name Google Image Redirect from CN
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description 将谷歌搜索首页图片按钮的地址重定向到.com
  6. // @author entr0pia
  7. // @match https://www.google.com/
  8. // @match https://www.google.com.*/
  9. // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
  10. // @grant none
  11. // @license MIT
  12. // @run-at document-end
  13. // ==/UserScript==
  14.  
  15. (function() {
  16. 'use strict';
  17. document.body.innerHTML = document.body.innerHTML.replace(/google.cn\/imghp/g, 'google.com/imghp');
  18.  
  19. // Your code here...
  20. })();

QingJ © 2025

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