SANDOTMR

SANDOTMR

Track and understand how long you stare at the Google Analytics loading bar, with current, day and life time counters available!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "SANDOTMR",
  "description": "Track and understand how long you stare at the Google Analytics loading bar, with current, day and life time counters available!",
  "version": "0.1",
  "icons": {
    "128": "images/icon.png"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "*://analytics.google.com/analytics/app/*"
      ],
      "js": [
        "SANDOTMR.js"
      ],
      "all_frames": true
    },
    {
      "run_at": "document_end",
      "matches": [
        "*://analytics.google.com/analytics/web/*"
      ],
      "js": [
        "SANDOTMR_parent.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "images/icon.png"
  ],
  "permissions": [
    "*://analytics.google.com/analytics/app/*",
    "*://analytics.google.com/analytics/web/*",
    "storage"
  ]
}