XHProf helper

Easy profiling for XHProf

Что такое XHProf helper?

XHProf helper - это расширение Chrome, разработанное https://www.donationbasedhosting.org, и его основная функция - "Easy profiling for XHProf".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения XHProf helper

Скачайте файлы расширений XHProf helper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название XHProf helper XHProf helper
ID adnlhmmjijeflmbmlpmhilkicpnodphi
Официальный URL https://chromewebstore.google.com/detail/xhprof-helper/adnlhmmjijeflmbmlpmhilkicpnodphi
Описание Easy profiling for XHProf
Размер файла 109 KB
Количество установок 229
Текущая Версия 1.2.0
Последнее Обновление 2017-01-03
Дата публикации 2017-01-03
Рейтинг 5.00/5 Всего 3 оценок
Разработчик https://www.donationbasedhosting.org
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/Tuurlijk/XHProf-helper-webextension
URL страницы помощи https://github.com/Tuurlijk/XHProf-helper-webextension/issues
Поддерживаемые языки 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"
}