Greasy Fork is available in English.

Disable BingChat scroll up

In Bing Chat, sometimes, scrolling up will destroy the conversation. This script is used to disable scrolling up in Bing Chat.

// ==UserScript==
// @name         Disable BingChat scroll up
// @name:zh-CN   关闭BingChat的向上滚动
// @namespace    https://findhao.net
// @version      0.2
// @description  In Bing Chat, sometimes, scrolling up will destroy the conversation. This script is used to disable scrolling up in Bing Chat.
// @description:zh-CN  在bing chat的界面,如果向上滚动,会跳转到bing搜索界面。此脚本禁止了在bing chat界面的向上滚动。
// @author       FindHao
// @match        https://www.bing.com/search?q=Bing+AI&showconv=1&FORM=hpcodx
// @icon         https://www.google.com/s2/favicons?sz=64&domain=bing.com
// @grant        none
// ==/UserScript==

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