Showing posts with label Userscript. Show all posts
Showing posts with label Userscript. Show all posts

Monday, March 3, 2025

Manifest V2

 To continue using Manifest V2 extensions:
  1. Go to: chrome://flags/
  2. Search for "mv2"
  3. Set "Allow legacy extension manifest versions" to Enabled and the 3 others to Disabled:
    1. "Extension Manifest V2 Deprecation Warning Stage"
    2. "Extension Manifest V2 Deprecation Disabled Stage"
    3. "Extension Manifest V2 Deprecation Unsupported Stage"

Wednesday, November 1, 2023

Bing: disable scrolling from Bing AI chat to search results

For some reason, Microsoft introduced a UX feature whereby the page would switch:

  • from Bing AI to the search results page when scrolling down, and
  • from the search results page to Bing AI when scrolling up.

This happened even though the scrollbar gave no indication there was additional content to scroll to.
The following userscript, simplified from a version I found on the Microsoft Community forum, disables this behavior:

// ==UserScript==
// @name Bing scroll
// @match https://www.bing.com/*
// ==/UserScript==

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

Original:
https://answers.microsoft.com/en-us/bing/forum/all/how-to-disable-scrolling-into-ai-chat/2c208d88-918f-4eed-bd8f-f04e7dcf5af1?page=5