修复bing有几率白屏
// ==UserScript==
// @name 修复Bing白屏
// @namespace http://tampermonkey.net/
// @version 1.0
// @description 修复bing有几率白屏
// @author LWF
// @match *://cn.bing.com/*
// @license MIT
// @grant none
// @run-at document-start
// ==/UserScript==
(function() {
'use strict';
const newUrl = window.location.href.replace('cn.bing.com', 'www4.bing.com');
if (newUrl !== window.location.href) {
window.location.replace(newUrl);
}
})();