XHProf helper

Easy profiling for XHProf

什么是XHProf helper?

XHProf helper是由https://www.donationbasedhosting.org开发的Chrome扩展程序,该扩展的主要功能是“Easy profiling for XHProf”。

扩展截图

screenshot
screenshot

下载XHProf helper扩展crx文件

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