Xdebug helper

Easy debugging, profiling and tracing extension for Xdebug

Xdebug helperคืออะไร?

Xdebug helper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Wrep และคุณลักษณะหลักของมันคือ "Easy debugging, profiling and tracing extension for Xdebug"

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Xdebug helper

ดาวน์โหลดไฟล์ส่วนขยาย Xdebug helper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        A must have for everyone thats debugging, profiling and tracing PHP code with Xdebug. This extension will help you to enable/disable debugging, profiling and tracing easily, instead of juggling around with POST/GET variables or cookies.

This extension is very useful for PHP developers that are using PHP tools with Xdebug support like PHPStorm, Eclipse with PDT, Netbeans and MacGDBp or any other Xdebug compatible profiling tool like KCacheGrind, WinCacheGrind or Webgrind.

By default the extension icon will show up on all pages, but to keep your browser as clean as possible, the extension can be configured to be only visible at the pages you want in the settings panel.

Hotkeys:
- Ctrl+Shift+X (Cmd+Shift+X on Mac) opens the popup.
- Alt+Shift+X toggles the debugging state.

---
Feel free to submit ideas, bugs and pull request to our Github project: https://github.com/wrep/xdebug-helper-for-chrome                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Xdebug helper Xdebug helper
ID eadndfjplgieldjbigjakmdgkmoaaaoc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/xdebug-helper/eadndfjplgieldjbigjakmdgkmoaaaoc
คำอธิบาย Easy debugging, profiling and tracing extension for Xdebug
ขนาดไฟล์ 70.13 KB
จำนวนการติดตั้ง 321,197
เวอร์ชันปัจจุบัน 1.6.1
อัปเดตครั้งล่าสุด 2016-10-24
วันที่เผยแพร่ 2016-10-24
คะแนน 4.38/5 รวมทั้งหมด 431 คะแนน
ผู้พัฒนา Wrep
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/mac-cain13/xdebug-helper-for-chrome
URL หน้าช่วยเหลือ https://github.com/mac-cain13/xdebug-helper-for-chrome/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Xdebug helper",
    "description": "Easy debugging, profiling and tracing extension for Xdebug",
    "version": "1.6.1",
    "author": "Mathijs Kadijk",
    "manifest_version": 2,
    "minimum_chrome_version": "20",
    "permissions": [
        "tabs",
        "*:\/\/*\/*"
    ],
    "icons": {
        "16": "images\/icon--16.png",
        "48": "images\/icon--48.png",
        "128": "images\/icon--128.png",
        "256": "images\/icon--256.png",
        "512": "images\/icon--256.png"
    },
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "images\/bug-gray.png",
        "default_title": "Debugging, profiling & tracing disabled",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+X",
                "windows": "Ctrl+Shift+X",
                "mac": "Command+Shift+X"
            },
            "description": "Open popup to toggle state"
        },
        "toggle_debug_action": {
            "suggested_key": {
                "default": "Alt+Shift+X",
                "windows": "Alt+Shift+X",
                "mac": "Alt+Shift+X"
            },
            "description": "Toggle between the debug states"
        }
    }
}