DataTrue Test Builder

DataTrue Test Builder

Make testing and monitoring of tags simple with DataTrue. Use the DataTrue Test Builder tool to easily create tests in DataTrue.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "version": "0.11.1",
  "description": "__MSG_appDescription__",
  "default_locale": "en",
  "icons": {
    "128": "assets/images/icon-128.png"
  },
  "permissions": [
    "storage",
    "webRequest",
    "cookies",
    "debugger",
    "*://*/*"
  ],
  "background": {
    "scripts": [
      "vendor/jquery.js",
      "vendor/rsvp.js",
      "vendor/lodash.js",
      "util.js",
      "rsvpchrome.js",
      "background.js",
      "chromereload.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "*://*/*"
      ],
      "js": [
        "testbuilder.js"
      ],
      "css": [
        "assets/styles/container.css"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "assets/**/*"
  ]
}