IMA.js Developer Tools

IMA.js Developer Tools

Adds IMA.js debugging panel to the Chrome Developer Tools window.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "IMA.js Developer Tools",
  "description": "Adds IMA.js debugging panel to the Chrome Developer Tools window.",
  "devtools_page": "html/devtools.html",
  "permissions": [
    "<all_urls>",
    "webNavigation",
    "storage",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/contentScript.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    }
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "options_page": "html/options.html",
  "browser_action": {
    "default_popup": "html/popup.html",
    "default_icon": {
      "16": "images/icon-dead-16.png",
      "32": "images/icon-dead-32.png",
      "48": "images/icon-dead-48.png",
      "128": "images/icon-dead-128.png"
    }
  },
  "icons": {
    "16": "images/icon-alive-16.png",
    "32": "images/icon-alive-32.png",
    "48": "images/icon-alive-48.png",
    "128": "images/icon-alive-128.png"
  },
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "version": "0.3.3"
}