Examine source code of GAClickMap

Inspect and view changes in GAClickMap 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "GAClickMap",
  "description": "Google Analytic Click Map",
  "version": "1.0.2",
  "action": {
    "default_icon": {
      "16": "logo-16.png",
      "48": "logo-48.png",
      "128": "logo-128.png"
    },
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "js/backgroundPage.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "js/content.js"
      ],
      "all_frames": true
    }
  ],
  "icons": {
    "16": "logo-16.png",
    "48": "logo-48.png",
    "128": "logo-128.png"
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "externally_connectable": {
    "matches": [
      "http://localhost/*",
      "https://app.clickmap.app/*"
    ]
  }
}