Scroll Progress Bar

Scroll Progress Bar

Simple and unobtrusive horizontal progress bar to show how far down a webpage you have scrolled.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Scroll Progress Bar",
  "description": "Simple and unobtrusive horizontal progress bar to show how far down a webpage you have scrolled.",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "manifest_version": 2,
  "version": "0.0.2",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "styles.css"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}