XHProf helper

Easy profiling for XHProf

Was ist XHProf helper?

XHProf helper ist eine Chrome-Erweiterung, die von https://www.donationbasedhosting.org entwickelt wurde, und ihr Hauptmerkmal ist "Easy profiling for XHProf".

Erweiterungsscreenshots

screenshot
screenshot

XHProf helper-Erweiterungs-CRX-Datei herunterladen

Laden Sie XHProf helper-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Profiling PHP code with XHProf is very powerful, but enabling XHProf by adding a GET variable is way too hard. This extension will help you to enable/disable profiling with ease.

✔ Profile with ease
✔ Custom profiling cookie name
✔ Domain whitelist (or regexes) for which to show the helper                    

Grundlegende Informationen zur Erweiterung

Name XHProf helper XHProf helper
ID adnlhmmjijeflmbmlpmhilkicpnodphi
Offizielle URL https://chromewebstore.google.com/detail/xhprof-helper/adnlhmmjijeflmbmlpmhilkicpnodphi
Beschreibung Easy profiling for XHProf
Dateigröße 109 KB
Installationsanzahl 229
Aktuelle Version 1.2.0
Letztes Update 2017-01-03
Veröffentlichungsdatum 2017-01-03
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler https://www.donationbasedhosting.org
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/Tuurlijk/XHProf-helper-webextension
Hilfeseite URL https://github.com/Tuurlijk/XHProf-helper-webextension/issues
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "XHProf helper",
    "version": "1.2.0",
    "author": "Michiel Roos",
    "description": "Easy profiling for XHProf",
    "homepage_url": "http:\/\/www.donationbasedhosting.org\/",
    "manifest_version": 2,
    "minimum_chrome_version": "20",
    "permissions": [
        "tabs",
        "*:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "Resources\/JavaScript\/Background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "Resources\/JavaScript\/Content.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "128": "Resources\/Icons\/Icon128.png",
        "48": "Resources\/Icons\/Icon48.png",
        "16": "Resources\/Icons\/Icon16.png"
    },
    "page_action": {
        "default_icon": {
            "38": "Resources\/Icons\/StopwatchDisabled38.png",
            "19": "Resources\/Icons\/StopwatchDisabled19.png"
        },
        "default_title": "Debugging, profiling & tracing disabled"
    },
    "options_ui": {
        "page": "Resources\/HTML\/Options.html"
    },
    "options_page": "Resources\/HTML\/Options.html"
}