对于 Chrome、Edge、Safari、Opera 和 Firefox 上的 Tampermonkey 插件用户,简单的方法是安装这样的脚本。
GreaseFork 上的更新版本!- 但貌似不好用。使用这个脚本代码解决了!
// ==UserScript==
// @name FIX for "Bing Search returns to the top" !
// @namespace http://tampermonkey.net/
// @version 0.12
// @description Stop doing weird things, Bing ! ;)
// @author Geekness
// @match http*://www.bing.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=bing.com
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
AwayTimeThreshold = 2_592_000;
})();
Tampermonkey 会说有错误,说变量没有定义,这是正常的,不用担心。
如果您需要解决方案,安装 Tampermonker 并创建一个新脚本然后粘贴上面代码并不难。
摘自网络