Stylized Scrollbar

Stylized Scrollbar

Stylize your scroll bar from a handful of presets

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Stylized Scrollbar",
  "author": "Andrew Li",
  "version": "0.1.0",
  "manifest_version": 2,
  "description": "Stylize your scroll bar from a handful of presets",
  "permissions": [
    "storage"
  ],
  "icons": {
    "128": "images/icon_128.png"
  },
  "browser_action": {
    "default_icon": "images/icon.png",
    "default_popup": "popup.html",
    "default_title": "Custom Scrollbar"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ],
  "options_page": "popup.html"
}