Layar Web Performance Budget
Extension to show web performance with budget capability (Speed index, DOMContentLoaded, Time to first byte)
Co to jest Layar Web Performance Budget?
Layar Web Performance Budget to rozszerzenie Chrome opracowane przez Ryan Nixon Salim, a jego główną funkcją jest „Extension to show web performance with budget capability (Speed index, DOMContentLoaded, Time to first byte)”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Layar Web Performance Budget
Pobierz pliki rozszerzeń Layar Web Performance Budget w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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!
Podstawowe informacje o rozszerzeniu
Nazwa | Layar Web Performance Budget |
ID | ekcelkelcighgiibhhibcpaofgadbgek |
Oficjalny URL | https://chromewebstore.google.com/detail/layar-web-performance-bud/ekcelkelcighgiibhhibcpaofgadbgek |
Opis | Extension to show web performance with budget capability (Speed index, DOMContentLoaded, Time to first byte) |
Rozmiar pliku | 33.16 KB |
Liczba instalacji | 40 |
Aktualna Wersja | 1.1 |
Ostatnia Aktualizacja | 2017-05-04 |
Data Publikacji | 2017-05-03 |
Ocena | 4.00/5 Łącznie 1 Oceny |
Deweloper | Ryan Nixon Salim |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/drgx/layar-chrome-extention |
Adres URL Strony Pomocy | https://github.com/drgx/layar-chrome-extention/issues |
Obsługiwane Języki | 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" ] } |