XHProf helper
Easy profiling for XHProf
Hvad er XHProf helper?
XHProf helper er en Chrome-udvidelse udviklet af https://www.donationbasedhosting.org, og dens hovedfunktion er "Easy profiling for XHProf".
Udvidelsesskærmbilleder
Download XHProf helper-udvidelses-CRX-fil
Download XHProf helper-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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 Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | adnlhmmjijeflmbmlpmhilkicpnodphi |
| Officiel URL | https://chromewebstore.google.com/detail/xhprof-helper/adnlhmmjijeflmbmlpmhilkicpnodphi |
| Beskrivelse | Easy profiling for XHProf |
| Filstørrelse | 109 KB |
| Antal Installationer | 229 |
| Nuværende Version | 1.2.0 |
| Senest Opdateret | 2017-01-03 |
| Udgivelsesdato | 2017-01-03 |
| Bedømmelse | 5.00/5 Samlet 3 Bedømmelser |
| Udvikler | https://www.donationbasedhosting.org |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/Tuurlijk/XHProf-helper-webextension |
| Hjælpeside-URL | https://github.com/Tuurlijk/XHProf-helper-webextension/issues |
| Understøttede Sprog | 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"
} | |