Layar Web Performance Budget
Extension to show web performance with budget capability (Speed index, DOMContentLoaded, Time to first byte)
Vad är Layar Web Performance Budget?
Layar Web Performance Budget är en Chrome-tillägg utvecklad av Ryan Nixon Salim, och dess huvudfunktion är "Extension to show web performance with budget capability (Speed index, DOMContentLoaded, Time to first byte)".
Tilläggsskärmbilder
Ladda ner Layar Web Performance Budget-förlängningens CRX-fil
Ladda ner Layar Web Performance Budget-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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!
Grundläggande Information om Tillägg
Namn | Layar Web Performance Budget |
ID | ekcelkelcighgiibhhibcpaofgadbgek |
Officiell webbadress | https://chromewebstore.google.com/detail/layar-web-performance-bud/ekcelkelcighgiibhhibcpaofgadbgek |
Beskrivning | Extension to show web performance with budget capability (Speed index, DOMContentLoaded, Time to first byte) |
Filstorlek | 33.16 KB |
Antal Installationer | 40 |
Aktuell Version | 1.1 |
Senast Uppdaterad | 2017-05-04 |
Publiceringsdatum | 2017-05-03 |
Betyg | 4.00/5 Totalt 1 Betyg |
Utvecklare | Ryan Nixon Salim |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/drgx/layar-chrome-extention |
Hjälpsida URL | https://github.com/drgx/layar-chrome-extention/issues |
Stödda Språk | 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" ] } |