Google Analytics Blocker

Block Google Analytics in any website. If you are a developer and you do not want to watch your own visits on your page or you are just a web user that you do not want pages analyse you, this extension is for you.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "description": "Block Google Analytics from any website you visit.",
  "homepage_url": "https://github.com/davidpob99/webextensions",
  "manifest_version": 2,
  "author": "David PoblaciĆ³n",
  "name": "Google Analytics Blocker",
  "permissions": [
    "management",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>",
    "storage"
  ],
  "icons": {
    "128": "icons/icon.svg"
  },
  "version": "1.2.2",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icons/icon.svg"
  },
  "applications": {
    "gecko": {
      "id": "{c7c3483c-0e96-45f4-8772-f84462cdc047}"
    }
  }
}