Digital Data Layer Debugger

Digital Data Layer Debugger

This extension helps to debug Digital Data Layer events

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Digital Data Layer Debugger",
  "description": "This extension helps to debug Digital Data Layer events",
  "version": "1.0",
  "author": "Driveback LLC",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "css": [
        "jquery.growl.css"
      ],
      "js": [
        "jquery.min.js",
        "jquery.growl.js",
        "deep-diff.js",
        "debugger.js"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_icon": {
      "16": "icons/off16.png",
      "48": "icons/off48.png",
      "128": "icons/off128.png"
    },
    "default_title": "icon"
  },
  "permissions": [
    "activeTab",
    "webNavigation",
    "https://ajax.googleapis.com/"
  ]
}