返回首頁 

Greasy Fork is available in English.

Auto Click "Change to English" on Google

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

  1. // ==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://greasyfork.org/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 loadclickChangeToEnglish();// Observe changes in case the element appears laterconst observer = new MutationObserver(() => clickChangeToEnglish());observer.observe(document.body, { childList: true, subtree: true });})();