Tag Tracker

Tag Tracker

Collects and validates media's tags, as well displays the result into info pages

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Tag Tracker",
  "version": "1.5.4",
  "browser_action": {
    "default_popup": "index.html",
    "default_title": "Tag Tracker"
  },
  "description": "Collects and validates media's tags, as well displays the result into info pages",
  "icons": {
    "16": "/img/logo_tt_16_16.png",
    "32": "/img/logo_tt_32_32.png",
    "128": "/img/logo_tt_128_128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "minimum_chrome_version": "79.0.3945.88",
  "permissions": [
    "activeTab",
    "webRequest",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentscript.js"
      ],
      "run_at": "document_start"
    }
  ],
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0QXa9m2Coh110ZpF7IumTCLB/DchhyAFQm/iD88gvDGzzBQpa19NTZ5yRt6UKUKb0oWr59RGz81W5BR14DG0KwD5UueRRnQBcMhikjwvq9irXi+z1jKMCYWJ6ATUA0gSNCCLkNTPsEGLvrbReLnI7T7yPHSy76SyvHvPL9UG2sBe0faECBp7XXVQloOaOWYLXysaWM8WcVBHVlg4qpP8Jb8/rI8qTrPsakgFhT7lj+PJ7RJp39f96dJHJhyAgkSLFIeiEx7WRktuNt9+Qu+Ayh9+0cYS2R9Iqm3R+HrTrOJe7qU6bIJ3dBEA5+kQ8Bc5ifUhls3geU9dqwNvixVN7QIDAQAB",
  "content_security_policy": "script-src 'self' https://www.googletagmanager.com/gtm.js https://www.google-analytics.com/analytics.js; object-src 'self'",
  "web_accessible_resources": [
    "img/*",
    "dataLayerObserver.js"
  ]
}