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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Beyerz และคุณลักษณะหลักของมันคือ "Simple Zend debugger extension, meant to fill the gap until Zend publishes an official plugin for Chrome."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Zend Debugger Extension

ดาวน์โหลดไฟล์ส่วนขยาย 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 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"
            ]
        }
    ]
}