Simple Performance Bar
Simple site performance bar that presents network, server, client and pageload times
Simple Performance Bar क्या है?
Simple Performance Bar Oliver Tse द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Simple site performance bar that presents network, server, client and pageload times"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Simple Performance Bar एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Using the Navigation Timing API, the Simple Performance Bar presents network, server, client and page load times as a group of easy to read bars fixed to the bottom of your browser. Each time your page loads, the Simple Performance Bar appears. Network, server and client time calculations are found in the W3C Navigation Timing Draft ( https://dvcs.w3.org/hg/webperf/raw-file/tip/specs/NavigationTiming/Overview.html ). Network time is connectEnd minus navigationStart. Server time is responseEnd minus connectEnd. Finally, client time is loadEventEnd minus responseEnd.
एक्सटेंशन की मूल जानकारी
नाम | Simple Performance Bar |
ID | gkicgocakpcjjdeigifekmfmpcpepakk |
आधिकारिक URL | https://chromewebstore.google.com/detail/simple-performance-bar/gkicgocakpcjjdeigifekmfmpcpepakk |
विवरण | Simple site performance bar that presents network, server, client and pageload times |
फ़ाइल का आकार | 11.04 KB |
स्थापना संख्या | 277 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2014-11-18 |
प्रकाशन तिथि | 2014-11-17 |
रेटिंग | 4.67/5 कुल 6 रेटिंग्स |
डेवलपर | Oliver Tse |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Simple Performance Bar", "description": "Simple site performance bar that presents network, server, client and pageload times", "version": "1.0", "icons": { "128": "simplePerfBar128x128.png" }, "content_scripts": [ { "run_at": "document_start", "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "simplePerfBar.css" ], "js": [ "simplePerfBar.js" ] } ] } |