XHProf helper

Easy profiling for XHProf

O que é XHProf helper?

XHProf helper é uma extensão do Chrome desenvolvida por https://www.donationbasedhosting.org, e sua principal característica é "Easy profiling for XHProf".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão XHProf helper

Baixe arquivos de extensão XHProf helper no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome XHProf helper XHProf helper
ID adnlhmmjijeflmbmlpmhilkicpnodphi
URL Oficial https://chromewebstore.google.com/detail/xhprof-helper/adnlhmmjijeflmbmlpmhilkicpnodphi
Descrição Easy profiling for XHProf
Tamanho do Arquivo 109 KB
Contagem de Instalações 229
Versão Atual 1.2.0
Última Atualização 2017-01-03
Data de Publicação 2017-01-03
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor https://www.donationbasedhosting.org
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/Tuurlijk/XHProf-helper-webextension
URL da Página de Ajuda https://github.com/Tuurlijk/XHProf-helper-webextension/issues
Idiomas Suportados 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"
}