谷歌搜索切换到桌面维基

谷歌搜索切换到桌面维基 (通过替换地址)

  1. // ==UserScript==
  2. // @name 谷歌搜索切换到桌面维基
  3. // @namespace https://huching.net/
  4. // @version 0.1
  5. // @description 谷歌搜索切换到桌面维基 (通过替换地址)
  6. // @author hz2
  7. // @match https://www.google.com/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=google.com
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. // Google ...
  16. [...document.querySelectorAll('a[href*="https://zh.m.wikisource.org"]')].forEach(x=> {
  17. x.href = x.href.replace('zh.m.wikisource.org','zh.wikisource.org')
  18. });
  19. [...document.querySelectorAll('a[href*="https://zh.m.wikipedia.org"]')].forEach(x=> {
  20. x.href = x.href.replace('zh.m.wikipedia.org','zh.wikipedia.org')
  21. });
  22. })();

QingJ © 2025

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