dataslayer

dataslayer

Debug and test tag management (Google Tag Manager, DTM, Tealium) and analytics implementations.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "dataslayer",
  "description": "Debug and test tag management (Google Tag Manager, DTM, Tealium) and analytics implementations.",
  "short_name": "dataslayer",
  "version": "1.5.1",
  "icons": {
    "48": "i48.png",
    "128": "i128.png"
  },
  "devtools_page": "devtools.html",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "dataslayer"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "injectlaunchmonitors.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "inject.js",
    "injectlaunchmonitors.js"
  ],
  "permissions": [
    "storage",
    "http://*/*",
    "https://*/*",
    "notifications",
    "webNavigation",
    "declarativeWebRequest"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}