WX Download Status Bar

WX Download Status Bar

Adds a bar to show the status of your downloads

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "version": "1.13",
  "description": "__MSG_extensionDescription__",
  "homepage_url": "https://github.com/jwensley2/DownloadStatusBar",
  "applications": {
    "gecko": {
      "id": "{a1c84bb7-d5fc-4906-90b4-965e520b29bf}"
    }
  },
  "icons": {
    "48": "icons/icon-48.png"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true,
    "browser_style": false
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "match_about_blank": true,
      "run_at": "document_end",
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "permissions": [
    "downloads",
    "downloads.open",
    "storage",
    "webNavigation"
  ],
  "web_accessible_resources": [
    "/fonts/*",
    "/sounds/*"
  ],
  "default_locale": "en_CA"
}