将 cn.bing.com 重定向至 www.bing.com
// ==UserScript==
// @name Microsoft Bing 国内版重定向至国际版
// @version 1.0
// @description 将 cn.bing.com 重定向至 www.bing.com
// @author 信标beta
// @match *://cn.bing.com/*
// @icon https://i0.hdslb.com/bfs/new_dyn/102262cfa11668bb1367fd4fd6a374fd1640301561.png
// @grant none
// @run-at document-start
// @namespace https://greasyfork.org/users/1407995
// ==/UserScript==
(function() {
'use strict';
const redirectFlag = 'bing_redirect_performed';
if (sessionStorage.getItem(redirectFlag)) {
return;
}
const currentUrl = new URL(window.location.href);
if (currentUrl.hostname === 'cn.bing.com') {
currentUrl.hostname = 'www.bing.com';
const newUrl = currentUrl.href;
sessionStorage.setItem(redirectFlag, 'true');
window.location.replace(newUrl);
}
})();