Layar Web Performance Budget
Extension to show web performance with budget capability (Speed index, DOMContentLoaded, Time to first byte)
Qu'est-ce que Layar Web Performance Budget ?
Layar Web Performance Budget est une extension Chrome développée par Ryan Nixon Salim, et sa fonction principale est "Extension to show web performance with budget capability (Speed index, DOMContentLoaded, Time to first byte)".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Layar Web Performance Budget
Téléchargez les fichiers d'extension Layar Web Performance Budget 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
Layar Performence budget is showing your website performance ( RUM Speed Index, DOMContentLoaded and TTFB) with budget capability. This extension will help you when develop website so you can improve your web speed. Happy tweaking!
Informations de Base sur l'Extension
Nom | Layar Web Performance Budget |
ID | ekcelkelcighgiibhhibcpaofgadbgek |
URL Officiel | https://chromewebstore.google.com/detail/layar-web-performance-bud/ekcelkelcighgiibhhibcpaofgadbgek |
Description | Extension to show web performance with budget capability (Speed index, DOMContentLoaded, Time to first byte) |
Taille du Fichier | 33.16 KB |
Nombre d'Installations | 40 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2017-05-04 |
Date de Publication | 2017-05-03 |
Évaluation | 4.00/5 Total 1 Évaluations |
Développeur | Ryan Nixon Salim |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/drgx/layar-chrome-extention |
URL de la Page d'Aide | https://github.com/drgx/layar-chrome-extention/issues |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Layar Web Performance Budget", "short_name": "Layar", "description": "Extension to show web performance with budget capability (Speed index, DOMContentLoaded, Time to first byte)", "version": "1.1", "browser_action": { "default_icon": "icon\/layar-black.png", "default_popup": "popup.html" }, "icons": { "16": "icon\/layar-black.png", "48": "icon\/layar-black.png", "128": "icon\/layar-black.png" }, "web_accessible_resources": [ "svg\/arrow.svg" ], "background": { "persistent": false, "scripts": [ "javascripts\/background.js" ] }, "content_scripts": [ { "css": [ "css\/style.css" ], "js": [ "javascripts\/rum-speedindex.js", "javascripts\/main.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "permissions": [ "activeTab", "storage", "tabs" ] } |