Live Analytics for Google Analytics™

Live Analytics for Google Analytics™

Instantly see how visitors interact with your website!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Live Analytics for Google Analytics™",
  "description": "Instantly see how visitors interact with your website!",
  "version": "1.2",
  "browser_action": {
    "default_title": "Live Analytics for Google Analytics™",
    "default_icon": "./images/icon.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "./images/icon.png",
    "48": "./images/icon.png",
    "128": "./images/icon.png"
  },
  "background": {
    "scripts": [
      "./js/jquery.min.js",
      "./js/config.js",
      "./js/core.js",
      "./js/oauth.js",
      "./js/background.js"
    ],
    "persist": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://accounts.google.com/o/oauth2/approval/v2?auto=false&response=state%3Dextension_token*"
      ],
      "js": [
        "./js/core.js",
        "./js/oauth.js",
        "./js/oauthContent.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./js/jquery.min.js",
        "./js/moments.js",
        "./js/datepicker.js",
        "./js/simpleNotify.js",
        "./js/font-awesome.js",
        "./js/config.js",
        "./js/core.js",
        "./js/selectize.js",
        "./js/content_script.js"
      ],
      "css": [
        "./css/barStyle.css",
        "./css/simpleNotifyStyle.css",
        "./css/datepicker.css",
        "./css/selectize.css"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "images/*.png"
  ],
  "client_id": "111445051456-epac6d2oqjlvfose0vborubg001spkg5.apps.googleusercontent.com",
  "permissions": [
    "activeTab",
    "storage",
    "https://*.googleapis.com"
  ]
}