Scripter debugger extension

Scripter debugger extension

This extension debugs the scripter blocks and load proccess

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Scripter debugger extension",
  "description": "This extension debugs the scripter blocks and load proccess",
  "version": "3.0.2",
  "content_security_policy": "default-src 'none'; style-src 'self'; script-src 'self' 'unsafe-eval' https://ssl.google-analytics.com; object-src 'self' ",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "browser_action": {
    "default_icon": "icons/icon16.png",
    "default_popup": "popup.html"
  },
  "background": {
    "pages": "background.html",
    "scripts": [
      "js/background.js",
      "js/canvas.compressed.js"
    ]
  },
  "permissions": [
    "tabs",
    "http://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/scripterdebug.js"
      ],
      "run_at": "document_start"
    }
  ]
}