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