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
官方網址 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"
}