Pop-up File Counter

Pop-up File Counter

Pop-up File Counter is a handy Firefox addon that keeps track of the number of files downloaded during browsing sessions. With a discreet pop-up display, users can easily monitor their download activity in real-time without disrupting

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Pop-up File Counter",
  "version": "1.0",
  "description": "Counts the number of pop-up files on the current web page.",
  "browser_action": {
    "default_icon": "icon.png"
  },
  "permissions": [
    "activeTab"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{cac6178a-959b-475d-8445-282306f7d453}"
    }
  }
}