Instant Tracking Monitor for Google Analytics

Instant Tracking Monitor for Google Analytics

Show Analytics hits & tracking errors in the extension Icon and blocks hits after analysing them.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Instant Tracking Monitor for Google Analytics",
  "description": "Show Analytics hits & tracking errors in the extension Icon and blocks hits after analysing them.",
  "author": "Thomas Langnau",
  "version": "0.6.11",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "128": "ico128.png"
  },
  "browser_action": {
    "default_icon": "qmd.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "<all_urls>",
    "storage"
  ]
}