XHProf helper
Easy profiling for XHProf
Co je XHProf helper?
XHProf helper je rozšíření Chrome vyvinuté https://www.donationbasedhosting.org, a jeho hlavní funkcí je „Easy profiling for XHProf“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření XHProf helper
Stáhněte si soubory rozšíření XHProf helper ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | XHProf helper |
ID | adnlhmmjijeflmbmlpmhilkicpnodphi |
Oficiální URL | https://chromewebstore.google.com/detail/xhprof-helper/adnlhmmjijeflmbmlpmhilkicpnodphi |
Popis | Easy profiling for XHProf |
Velikost souboru | 109 KB |
Počet instalací | 229 |
Aktuální Verze | 1.2.0 |
Poslední Aktualizace | 2017-01-03 |
Datum Vydání | 2017-01-03 |
Hodnocení | 5.00/5 Celkem 3 Hodnocení |
Vývojář | https://www.donationbasedhosting.org |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/Tuurlijk/XHProf-helper-webextension |
URL Stránky Nápovědy | https://github.com/Tuurlijk/XHProf-helper-webextension/issues |
Podporované Jazyky | 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" } |