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 |
官方網址 | 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" ] } ] } |