{
  "name": "Chrome Debugger Extension for Lively4",
  "version": "1.0.0",
  "description": "Debugging tools for the Lively4 programming environment.",
  "devtools_page": "devtools.html",
  "permissions": ["tabs", "<all_urls>", "debugger", "storage"],
   "background": {
    "scripts": ["background.js"]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
        ],
      "js": ["js/contentscript.js"],
      "run_at": "document_end"
    }
  ], 
  "icons": {
    "16": "img/logo16.png",
    "48": "img/logo48.png",
    "128": "img/logo128.png"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "web_accessible_resources": ["js/script.js"],
  "manifest_version": 2
}
