您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Set Bing's region to Taiwan when visiting Bing
// ==UserScript== // @name Bing Set Region to Taiwan // @namespace https://www.bing.com/ // @version 0.1 // @description Set Bing's region to Taiwan when visiting Bing // @author Your Name // @match https://www.bing.com/* // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; // Function to set Bing's region to Taiwan function setRegionToTaiwan() { var regionParam = "setmkt=zh-TW"; var url = window.location.href; if (url.indexOf("setmkt=") === -1) { if (url.indexOf("?") === -1) { url += "?" + regionParam; } else { url += "&" + regionParam; } window.location.href = url; } } // Call the function to set region to Taiwan setRegionToTaiwan(); })();