Custom Scrollbar

Custom Scrollbar

Choose or make your own custom scrollbar

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Custom Scrollbar",
  "version": "1.1.0",
  "description": "Choose or make your own custom scrollbar",
  "options_page": "/options/customScrollbarOptions.html",
  "action": {
    "default_popup": "/quickSettings/customScrollbarQuickSettings.html"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "icons": {
    "16": "/images/icons/customscrollbaricon16.png",
    "32": "/images/icons/customscrollbaricon32.png",
    "48": "/images/icons/customscrollbaricon48.png",
    "128": "/images/icons/customscrollbaricon128.png"
  },
  "background": {
    "service_worker": "/customscrollbarstart.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*/",
        "https://*/*"
      ],
      "js": [
        "customScrollbar.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/images/scrollbarImages*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}