Just a Scroll Bar

Just a Scroll Bar

A simple scroll bar.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Just a Scroll Bar",
  "version": "0.6",
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "scrollbar.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "A simple scroll bar.",
  "options_page": "options.html",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "s16.png",
    "48": "s48.png",
    "128": "s128.png"
  }
}