Skip to content

Instantly share code, notes, and snippets.

@wyw
Last active September 5, 2023 16:18
Show Gist options
  • Save wyw/f2ea6734000665091f4e85b745145454 to your computer and use it in GitHub Desktop.
Save wyw/f2ea6734000665091f4e85b745145454 to your computer and use it in GitHub Desktop.
Disable Bing Search Engine Scroll
// ==UserScript==
// @name Disable Bing Search Engine Scroll
// @author reddit.com/u/pinpann
// @namespace reddit.com/comments/11dautm/comment/ja7ngte
// @description Disables scrolling on the Bing search engine page to prevent accidental scrolling into the Bing chat feature.
// @match https://www.bing.com/*
// @icon https://www.bing.com/favicon.ico
// @version 1.0
// @grant none
// @homepageURL https://reddit.com/11f1yb6
// ==/UserScript==
window.addEventListener("wheel", e=>{
if(e.target.className.includes("cib-serp-main")) e.stopPropagation();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment