Zend Debugger Extension

Zend Debugger Extension

Simple Zend debugger extension, meant to fill the gap until Zend publishes an official plugin for Chrome.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Zend Debugger Extension",
  "version": "0.7.3",
  "description": "Simple Zend debugger extension, meant to fill the gap until Zend publishes an official plugin for Chrome.",
  "icons": {
    "16": "resources/zde_icon16.png",
    "32": "resources/zde_icon32.png",
    "48": "resources/zde_icon48.png"
  },
  "browser_action": {
    "default_icon": "resources/zde_icon16.png",
    "default_popup": "menu.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_page": "options2.html",
  "permissions": [
    "tabs",
    "http://127.0.0.1/"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/",
        "https://*/",
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}