Auto Click "Change to English" on Google

Automatically clicks the "Change to English" link when it appears on Google.

// ==UserScript==
// @name         Auto Click "Change to English" on Google
// @version      1.0
// @description  Automatically clicks the "Change to English" link when it appears on Google.
// @match        *://www.google.com/*
// @grant        none
// @namespace https://gf.qytechs.cn/users/1435046
// ==/UserScript==

(function() {
    'use strict';

    function clickChangeToEnglish() {
        const link = document.querySelector('a[style*="display:inline-block"][href*="/setprefs"]');
        if (link) {
            link.click();
        }
    }

    // Run once on page load
    clickChangeToEnglish();

    // Observe changes in case the element appears later
    const observer = new MutationObserver(() => clickChangeToEnglish());
    observer.observe(document.body, { childList: true, subtree: true });
})();

QingJ © 2025

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