Simple xdebug

Xdebug in one click

What is Simple xdebug?

Simple xdebug is a Chrome extension developed by chung1905, and its main feature is "Xdebug in one click".

Extension Screenshots

screenshot

Download Simple xdebug Extension CRX File

Download Simple xdebug extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This extension enable xdebug cookie, this help start xdebug on the server.

This only enable debug request, no profiler or tracing.

Source code: https://github.com/chung1905/simple-xdebug-chrome/                    

Extension Basic Information

Name Simple xdebug Simple xdebug
ID clkgkebfpmmfmdlhcokidjfpjphohpja
Official URL https://chromewebstore.google.com/detail/simple-xdebug/clkgkebfpmmfmdlhcokidjfpjphohpja
Description Xdebug in one click
File Size 7.12 KB
Installation Count 82
Current Version 1.0
Last Updated 2023-11-23
Publish Date 2020-09-13
Rating 3.67/5 Total 3 Ratings
Developer chung1905
Email [email protected]
Payment Type free
Extension Website https://github.com/chung1905/simple-xdebug-chrome/
Help Page URL https://github.com/chung1905/simple-xdebug-chrome/issues
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Simple xdebug",
    "version": "1.0",
    "description": "Xdebug in one click",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "activeTab",
        "cookies"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "images\/icon48.png",
        "default_title": "Xdebug"
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "manifest_version": 2
}