Zend Debugger Extension
Simple Zend debugger extension, meant to fill the gap until Zend publishes an official plugin for Chrome.
Qu'est-ce que Zend Debugger Extension ?
Zend Debugger Extension est une extension Chrome développée par Beyerz, et sa fonction principale est "Simple Zend debugger extension, meant to fill the gap until Zend publishes an official plugin for Chrome.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Zend Debugger Extension
Téléchargez les fichiers d'extension Zend Debugger Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Zend Debugger Extension makes debugging with Zend Studio/Php Storm possible in chrome browsers.
Simple Zend debugger toolbar extension, meant to
fill the gap until Zend publishes an official
plugin for Google Chrome.
The debugger also works great with PHP Storm
Disclaimer:
The extension is not affiliated to, nor endorsed
by Zend Technologies at this moment. Trademarks
and/or copyright of Zend name, logo and icons
belong to Zend Technologies Ltd.
Change List:
V0.7.0
Added donation button to help improve development time
V0.7.1
Added option to debug all pages
V0.7.3
Updated options page Informations de Base sur l'Extension
| Nom | |
| ID | aonajadpeeaijblinaeohfdmbgdpibba |
| URL Officiel | https://chromewebstore.google.com/detail/zend-debugger-extension/aonajadpeeaijblinaeohfdmbgdpibba |
| Description | Simple Zend debugger extension, meant to fill the gap until Zend publishes an official plugin for Chrome. |
| Taille du Fichier | 801 KB |
| Nombre d'Installations | 781 |
| Version Actuelle | 0.7.3 |
| Dernière Mise à Jour | 2015-07-12 |
| Date de Publication | 2015-07-12 |
| Évaluation | 4.60/5 Total 5 Évaluations |
| Développeur | Beyerz |
| Type de Paiement | free |
| Langues Prises en Charge | en |
| 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"
]
}
]
} | |