Analytics Modifier

Analytics Modifier

Are you tired of trying to exclude internal visitors from your Google Analytics accounts? With this extension, you can modify the…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "author": "Qvalento Solutions AB",
  "name": "Analytics Modifier",
  "description": "",
  "version": "1.0",
  "icons": {
    "16": "icons/icon_off.png",
    "48": "icons/icon_48_off.png",
    "128": "icons/icon_128_off.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "webRequest",
    "webRequestBlocking",
    "http://*/",
    "https://*/"
  ],
  "browser_action": {
    "default_icon": "icons/icon_48_off.png",
    "default_popup": "popup.html"
  },
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/js/content.js"
      ],
      "run_at": "document_start"
    }
  ]
}