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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Zend Debugger Extension 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
            ]
        }
    ]
}