XHProf helper
Easy profiling for XHProf
XHProf helper क्या है?
XHProf helper https://www.donationbasedhosting.org द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Easy profiling for XHProf"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में XHProf helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
ईमेल | [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" } |