Examine source code of Tabs/Windows Counter and Stats

Inspect and view changes in Tabs/Windows Counter and Stats source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "Tabs/Windows Counter and Stats",
  "version": "1.9",
  "description": "Count the number of open tabs and windows in the browser and display the data in a chart.",
  "permissions": [
    "storage"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "tab-counter-stats@sammed.addons.mozilla.org",
      "strict_min_version": "109.0"
    }
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/tab-counter-icon-16.png",
      "32": "/images/tab-counter-icon-32.png",
      "48": "/images/tab-counter-icon-48.png",
      "128": "/images/tab-counter-icon-128.png"
    },
    "default_badge_text": "0"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "/images/tab-counter-icon-16.png",
    "32": "/images/tab-counter-icon-32.png",
    "48": "/images/tab-counter-icon-48.png",
    "128": "/images/tab-counter-icon-128.png"
  }
}