XHProf helper

Easy profiling for XHProf

¿Qué es XHProf helper?

XHProf helper es una extensión de Chrome desarrollada por https://www.donationbasedhosting.org, y su función principal es "Easy profiling for XHProf".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión XHProf helper

Descarga archivos de extensión XHProf helper en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre XHProf helper XHProf helper
ID adnlhmmjijeflmbmlpmhilkicpnodphi
URL Oficial https://chromewebstore.google.com/detail/xhprof-helper/adnlhmmjijeflmbmlpmhilkicpnodphi
Descripción Easy profiling for XHProf
Tamaño del Archivo 109 KB
Cantidad de Instalaciones 229
Versión Actual 1.2.0
Última Actualización 2017-01-03
Fecha de Publicación 2017-01-03
Calificación 5.00/5 Total de 3 Calificaciones
Desarrollador https://www.donationbasedhosting.org
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/Tuurlijk/XHProf-helper-webextension
URL de la Página de Ayuda https://github.com/Tuurlijk/XHProf-helper-webextension/issues
Idiomas Soportados 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"
}