任务栏搜索防中国区

防止任务栏搜索的中国区页面污染浏览器bing区域

// ==UserScript==
// @name         任务栏搜索防中国区
// @namespace    https://greasyfork.org/zh-CN/users/4522-lychichem
// @version      1.0.1
// @description  防止任务栏搜索的中国区页面污染浏览器bing区域
// @author       lychichem
// @license      MIT
// @include      /^https?:\/\/www\.bing\.com(\/|\/videos\/|\/images\/|\/maps\/|\/academic\/)search\?q=(.*)&cc=CN(.*)
// @icon         https://www.bing.com/sa/simg/favicon-trans-bg-blue-mg.ico
// @grant        none
// @run-at       document-start
// ==/UserScript==

(function() {
    'use strict';
    let url = window.location.href;
    let new_url = url.replace("&cc=CN", "&cc=hk");
    window.location.href = new_url;
})();