XHProf helper
Easy profiling for XHProf
XHProf helperとは何ですか?
XHProf helperはhttps://www.donationbasedhosting.orgによって開発されたChromeの拡張機能で、その主な機能は「Easy profiling for XHProf」です。
拡張機能のスクリーンショット
XHProf helper拡張機能のCRXファイルをダウンロード
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 |
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 |
Eメール | [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" } |