Zend Debugger Extension

Simple Zend debugger extension, meant to fill the gap until Zend publishes an official plugin for Chrome.

Zend Debugger Extension là gì?

Zend Debugger Extension là một tiện ích mở rộng Chrome được phát triển bởi Beyerz, và tính năng chính của nó là "Simple Zend debugger extension, meant to fill the gap until Zend publishes an official plugin for Chrome.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Zend Debugger Extension

Tải xuống các tệp mở rộng Zend Debugger Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Zend Debugger Extension Zend Debugger Extension
ID aonajadpeeaijblinaeohfdmbgdpibba
URL Chính Thức https://chromewebstore.google.com/detail/zend-debugger-extension/aonajadpeeaijblinaeohfdmbgdpibba
Mô tả Simple Zend debugger extension, meant to fill the gap until Zend publishes an official plugin for Chrome.
Kích Thước Tệp 801 KB
Số Lần Cài Đặt 781
Phiên Bản Hiện Tại 0.7.3
Cập Nhật Lần Cuối 2015-07-12
Ngày Phát Hành 2015-07-12
Đánh Giá 4.60/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Beyerz
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}