XHProf helper
Easy profiling for XHProf
XHProf helper là gì?
XHProf helper là một tiện ích mở rộng Chrome được phát triển bởi https://www.donationbasedhosting.org, và tính năng chính của nó là "Easy profiling for XHProf".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng XHProf helper
Tải xuống các tệp mở rộng XHProf helper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | XHProf helper |
ID | adnlhmmjijeflmbmlpmhilkicpnodphi |
URL Chính Thức | https://chromewebstore.google.com/detail/xhprof-helper/adnlhmmjijeflmbmlpmhilkicpnodphi |
Mô tả | Easy profiling for XHProf |
Kích Thước Tệp | 109 KB |
Số Lần Cài Đặt | 229 |
Phiên Bản Hiện Tại | 1.2.0 |
Cập Nhật Lần Cuối | 2017-01-03 |
Ngày Phát Hành | 2017-01-03 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | https://www.donationbasedhosting.org |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/Tuurlijk/XHProf-helper-webextension |
URL Trang Trợ Giúp | https://github.com/Tuurlijk/XHProf-helper-webextension/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" } |