Last active
September 5, 2023 16:18
-
-
Save wyw/f2ea6734000665091f4e85b745145454 to your computer and use it in GitHub Desktop.
Disable Bing Search Engine Scroll
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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