XHProf helper
Easy profiling for XHProf
Co to jest XHProf helper?
XHProf helper to rozszerzenie Chrome opracowane przez https://www.donationbasedhosting.org, a jego główną funkcją jest „Easy profiling for XHProf”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia XHProf helper
Pobierz pliki rozszerzeń XHProf helper w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | XHProf helper |
ID | adnlhmmjijeflmbmlpmhilkicpnodphi |
Oficjalny URL | https://chromewebstore.google.com/detail/xhprof-helper/adnlhmmjijeflmbmlpmhilkicpnodphi |
Opis | Easy profiling for XHProf |
Rozmiar pliku | 109 KB |
Liczba instalacji | 229 |
Aktualna Wersja | 1.2.0 |
Ostatnia Aktualizacja | 2017-01-03 |
Data Publikacji | 2017-01-03 |
Ocena | 5.00/5 Łącznie 3 Oceny |
Deweloper | https://www.donationbasedhosting.org |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/Tuurlijk/XHProf-helper-webextension |
Adres URL Strony Pomocy | https://github.com/Tuurlijk/XHProf-helper-webextension/issues |
Obsługiwane Języki | 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" } |