XHProf helper

Easy profiling for XHProf

XHProf helper란 무엇입니까?

XHProf helper은(는) https://www.donationbasedhosting.org에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easy profiling for XHProf"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

XHProf helper 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
}