Bing的bug?

发布时间 2023-06-12 16:20:51作者: COMEIN

问题

浏览完一个网页,退回到原来的搜索结果里,总是返回顶部

解决方案

链接

具体就是 安装新建油猴脚本,内容如下

// ==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/*
// @match        http*://cn.bing.com/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';
    AwayTimeThreshold = 2_592_000;
})();

问题根源

Bing搜索失焦时触发的脚本文件中有一个函数,等待15秒,然后将页面滚动到顶部。