Examine source code of Site Visit Counter

Inspect and view changes in Site Visit Counter 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": 2,
  "name": "__MSG_extensionName__",
  "version": "1.0",
  "browser_action": {
    "default_icon": "icons/logo_64.png",
    "default_title": "__MSG_extensionName__",
    "default_popup": "popup.html"
  },
  "permissions": [
    "webNavigation",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "description": "__MSG_extensionDescription__",
  "icons": {
    "32": "icons/logo_32.png",
    "48": "icons/logo_48.png",
    "64": "icons/logo_64.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "strict_min_version": "91.1.0",
      "id": "{621a3f94-7d24-4cf9-99d7-f6a614af1d8c}"
    }
  }
}