Simple Performance Bar
Simple site performance bar that presents network, server, client and pageload times
Qu'est-ce que Simple Performance Bar ?
Simple Performance Bar est une extension Chrome développée par Oliver Tse, et sa fonction principale est "Simple site performance bar that presents network, server, client and pageload times".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Simple Performance Bar
Téléchargez les fichiers d'extension Simple Performance Bar au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Simple Performance Bar |
ID | gkicgocakpcjjdeigifekmfmpcpepakk |
URL Officiel | https://chromewebstore.google.com/detail/simple-performance-bar/gkicgocakpcjjdeigifekmfmpcpepakk |
Description | Simple site performance bar that presents network, server, client and pageload times |
Taille du Fichier | 11.04 KB |
Nombre d'Installations | 277 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2014-11-18 |
Date de Publication | 2014-11-17 |
Évaluation | 4.67/5 Total 6 Évaluations |
Développeur | Oliver Tse |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } ] } |