XHProf helper

Easy profiling for XHProf

What is XHProf helper?

XHProf helper is a Chrome extension developed by https://www.donationbasedhosting.org, and its main feature is "Easy profiling for XHProf".

Extension Screenshots

screenshot
screenshot

Download XHProf helper Extension CRX File

Download XHProf helper extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name XHProf helper XHProf helper
ID adnlhmmjijeflmbmlpmhilkicpnodphi
Official URL https://chromewebstore.google.com/detail/xhprof-helper/adnlhmmjijeflmbmlpmhilkicpnodphi
Description Easy profiling for XHProf
File Size 109 KB
Installation Count 229
Current Version 1.2.0
Last Updated 2017-01-03
Publish Date 2017-01-03
Rating 5.00/5 Total 3 Ratings
Developer https://www.donationbasedhosting.org
Email [email protected]
Payment Type free
Extension Website https://github.com/Tuurlijk/XHProf-helper-webextension
Help Page URL https://github.com/Tuurlijk/XHProf-helper-webextension/issues
Supported Languages 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"
}