XHProf helper
Easy profiling for XHProf
ما هو XHProf helper؟
XHProf helper هو إضافة Chrome تم تطويرها بواسطة https://www.donationbasedhosting.org، والميزة الرئيسية لها هي "Easy profiling for XHProf".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة XHProf helper
قم بتنزيل ملفات الامتداد XHProf helper بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 معلومات أساسية عن التمديد
| الاسم | |
| 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 |
| عنوان صفحة المساعدة | 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"
} | |