Greasy Fork

Greasy Fork is available in English.

Google → Yandex Search Button

Adds a button on Google search results page to rerun the search on Yandex.com

当前为 2025-10-15 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Google → Yandex Search Button
// @namespace    http://greasyfork.icu/en/users/1442738-matthewseat449
// @version      1.1
// @description  Adds a button on Google search results page to rerun the search on Yandex.com
// @author       github.com/matthewseat449
// @match        https://www.google.*/*
// @grant        none
// @license      MIT
// ==/UserScript==

// the button will appear on the left side 

(function() {
    'use strict';

    function addButton() {
        const urlParams = new URLSearchParams(window.location.search);
        const query = urlParams.get('q');
        if (!query) {
            // no search query; no need to add
            return;
        }
        if (document.getElementById('yandex-search-button')) {
            // already added
            return;
        }

        // Create the button
        const btn = document.createElement('button');
        btn.id = 'yandex-search-button';
        btn.textContent = 'Search on Yandex';
        btn.style.marginLeft = '8px';
        btn.style.padding = '5px 10px';
        btn.style.backgroundColor = '#f8f9fa';
        btn.style.border = '1px solid #dadce0';
        btn.style.borderRadius = '4px';
        btn.style.cursor = 'pointer';
        btn.style.fontSize = '14px';
        btn.style.fontFamily = 'Arial, sans-serif';
        btn.style.color = '#202124';

        btn.onclick = () => {
            const yandexUrl = 'https://yandex.com/search/?text=' + encodeURIComponent(query);
            window.open(yandexUrl, '_blank');
        };

        // Possible insertion points in the Google results page
        // 1. In the “tools / settings / etc” bar (hdtb)
        const hdtb = document.getElementById('hdtb');  // top Google menu bar
        if (hdtb) {
            // try to insert near the right side
            hdtb.appendChild(btn);
            return;
        }

        // 2. In the search form area (just after input)
        const searchForm = document.querySelector('form[role="search"]');
        if (searchForm) {
            searchForm.appendChild(btn);
            return;
        }

        // 3. As fallback, at top of body
        document.body.insertBefore(btn, document.body.firstChild);
    }

    // Try adding after initial load
    window.addEventListener('load', addButton);

    // Also try after DOM changes (since Google sometimes lazy-loads or dynamically updates)
    const observer = new MutationObserver((mutations) => {
        addButton();
    });
    observer.observe(document.body, { childList: true, subtree: true });
})();