XHProf helper

Easy profiling for XHProf

Qu'est-ce que XHProf helper ?

XHProf helper est une extension Chrome développée par https://www.donationbasedhosting.org, et sa fonction principale est "Easy profiling for XHProf".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension XHProf helper

Téléchargez les fichiers d'extension XHProf helper au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom XHProf helper XHProf helper
ID adnlhmmjijeflmbmlpmhilkicpnodphi
URL Officiel https://chromewebstore.google.com/detail/xhprof-helper/adnlhmmjijeflmbmlpmhilkicpnodphi
Description Easy profiling for XHProf
Taille du Fichier 109 KB
Nombre d'Installations 229
Version Actuelle 1.2.0
Dernière Mise à Jour 2017-01-03
Date de Publication 2017-01-03
Évaluation 5.00/5 Total 3 Évaluations
Développeur https://www.donationbasedhosting.org
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/Tuurlijk/XHProf-helper-webextension
URL de la Page d'Aide https://github.com/Tuurlijk/XHProf-helper-webextension/issues
Langues Prises en Charge 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"
}