Tag Manager Validator

Tag Manager Validator

Validator for tag managers like: DTM, GTM or Tealium, which can give you a validation of the datalayer.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "browser_action": {
    "default_icon": "icon-32.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "js/inject.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "Validator for tag managers like: DTM, GTM or Tealium, which can give you a validation of the datalayer.",
  "manifest_version": 2,
  "name": "Tag Manager Validator",
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "webRequest",
    "webRequestBlocking",
    "browsingData",
    "webNavigation",
    "http://*/*",
    "https://*/*"
  ],
  "version": "0.0.3.6",
  "web_accessible_resources": [
    "/js/*"
  ]
}