Copilot - Prevent scroll down to search page

Copilot - Prevent scroll down to search page

This extension prevents users from accidentally scrolling down to the search page while using Bing AI Copilot.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Copilot - Prevent scroll down to search page",
  "version": "1.0",
  "description": "This extension prevents users from accidentally scrolling down to the search page while using Bing AI Copilot.",
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "action": {
    "default_icon": "icon.png",
    "default_title": "Prevent scroll while using Bing AI Copilot"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.bing.com/search?*"
      ],
      "include_globs": [
        "https://www.bing.com/search?q=*&showconv=*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}