Scroll Progress New

Scroll Progress New

Adds a scroll progress indicator of the percentage of the page scrolled in the top-right corner to the current page. This addon is based in the code of Scroll Progress by Sepand Parhami implemented for older versions of Firefox.

Additional files are visible only to premium users

manifest.json


{
  "description": "Adds a scroll progress indicator to the current page",
  "manifest_version": 2,
  "name": "Scroll Progress New",
  "version": "1.4.5",
  "applications": {
    "gecko": {
      "id": "{aaf3d22a-ec17-430d-9075-dbcc2da2506f}"
    }
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_scripts/appearance.js",
        "content_scripts/scroll_progress.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options/options.html",
    "browser_style": true,
    "open_in_tab": true
  }
}