Google Analytics Opt-out Add-on (by Google)

Google Analytics Opt-out Add-on (by Google)

Tells the Google Analytics JavaScript not to send information to Google Analytics.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_gaoptout_name__",
  "description": "__MSG_gaoptout_description__",
  "version": "1.1",
  "default_locale": "en",
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "gaoptout.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ]
}