Google搜尋手機版維基百科改為桌面版網址

若Google搜尋結果為手機版的維基百科就改為桌面版網址

目前為 2022-05-25 提交的版本,檢視 最新版本

// ==UserScript==
// @name             Google搜尋手機版維基百科改為桌面版網址
// @namespace        http://tampermonkey.net/
// @version          0.1
// @description      若Google搜尋結果為手機版的維基百科就改為桌面版網址
// @author           Rabbit1345
// @license          MIT
// @match            https://www.google.com/*
// @match            https://www.google.com.tw/*
// @icon             https://favicon.yandex.net/favicon/google.com
// @grant            none
// ==/UserScript==


(function() {

    var yuRUbf_length = document.querySelectorAll('.yuRUbf').length;
    var tjvcx_length = document.querySelectorAll('.tjvcx').length;

    for (var i = 0; i < yuRUbf_length; i++)
    {
      if (document.querySelectorAll('.yuRUbf')[i].innerHTML.includes("m.wikipedia.org"))
      {
        document.querySelectorAll('.yuRUbf')[i].innerHTML = document.querySelectorAll('.yuRUbf')[i].innerHTML.replace("m.wikipedia.org","wikipedia.org"); //change URL
      }
    }

    for (var j = 0; j < tjvcx_length; j++)
    {
      document.querySelectorAll('.tjvcx')[j].innerHTML = document.querySelectorAll('.tjvcx')[j].innerHTML.replace("m.wikipedia.org","wikipedia.org"); //change text
    }

})();

QingJ © 2025

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