Google site search on IThome

将IT之家搜索替换为谷歌site语法搜索

// ==UserScript==
// @name         Google site search on IThome
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  将IT之家搜索替换为谷歌site语法搜索
// @author       entr0pia, ChatGPT
// @match        https://www.ithome.com/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    var btns = document.getElementsByName("sa");

    for (var i = 0; i < btns.length; i++) {
        btns[i].addEventListener("click", function(e) {
            e.preventDefault();
            var searchQuery = "site:ithome.com " + encodeURIComponent(document.querySelector('input[name="q"]').value);
            window.open("https://www.google.com/search?q=" + searchQuery, "_blank");
        });
    }

})();

QingJ © 2025

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