Google Analytics Relabelling Machine

Google Analytics Relabelling Machine

Changes the terminology used in Google Analytics reports.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Google Analytics Relabelling Machine",
  "description": "Changes the terminology used in Google Analytics reports.",
  "author": "ConversionWorks",
  "homepage_url": "http://www.conversionworks.co.uk",
  "version": "1.0.1",
  "icons": {
    "128": "icon-128.png"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "storage"
  ],
  "browser_action": {
    "default_icon": "icon-128.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.google.com/analytics/web/*"
      ],
      "js": [
        "jquery-2.1.3.min.js",
        "arrive.min.js",
        "content_script.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "manifest_version": 2
}