Zend Debugger Extension
Simple Zend debugger extension, meant to fill the gap until Zend publishes an official plugin for Chrome.
Zend Debugger Extensionとは何ですか?
Zend Debugger ExtensionはBeyerzによって開発されたChromeの拡張機能で、その主な機能は「Simple Zend debugger extension, meant to fill the gap until Zend publishes an official plugin for Chrome.」です。
拡張機能のスクリーンショット
Zend Debugger Extension拡張機能のCRXファイルをダウンロード
Zend Debugger Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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
拡張機能の基本情報
名前 | Zend Debugger Extension |
ID | aonajadpeeaijblinaeohfdmbgdpibba |
公式URL | https://chromewebstore.google.com/detail/zend-debugger-extension/aonajadpeeaijblinaeohfdmbgdpibba |
説明 | Simple Zend debugger extension, meant to fill the gap until Zend publishes an official plugin for Chrome. |
ファイルサイズ | 801 KB |
インストール数 | 781 |
現在のバージョン | 0.7.3 |
最終更新日 | 2015-07-12 |
公開日 | 2015-07-12 |
評価 | 4.60/5 合計 5 レビュー |
開発者 | Beyerz |
支払い方法 | free |
対応言語 | 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" ] } ] } |