禁用newBing的自动滚动

禁用newBing聊天时滚动回去

// ==UserScript==
// @name                 disable auto scrolling for newBing
// @name:zh-CN           禁用newBing的自动滚动
// @description          disable newBing chat when scrolling back
// @description:zh-cn   禁用newBing聊天时滚动回去
// @version             1.0.0
// @match               *://www.bing.com/search*
// @run-at              document-start
// @license MIT
// @namespace https://gf.qytechs.cn/users/562260
// ==/UserScript==

(function () {
    'use strict';

    window.addEventListener("wheel", e => {
       if (e.target.className.includes("cib-serp-main")) e.stopPropagation();
    });
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址