Layar Web Performance Budget
Extension to show web performance with budget capability (Speed index, DOMContentLoaded, Time to first byte)
O que é Layar Web Performance Budget?
Layar Web Performance Budget é uma extensão do Chrome desenvolvida por Ryan Nixon Salim, e sua principal característica é "Extension to show web performance with budget capability (Speed index, DOMContentLoaded, Time to first byte)".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Layar Web Performance Budget
Baixe arquivos de extensão Layar Web Performance Budget no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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!
Informações Básicas da Extensão
Nome | Layar Web Performance Budget |
ID | ekcelkelcighgiibhhibcpaofgadbgek |
URL Oficial | https://chromewebstore.google.com/detail/layar-web-performance-bud/ekcelkelcighgiibhhibcpaofgadbgek |
Descrição | Extension to show web performance with budget capability (Speed index, DOMContentLoaded, Time to first byte) |
Tamanho do Arquivo | 33.16 KB |
Contagem de Instalações | 40 |
Versão Atual | 1.1 |
Última Atualização | 2017-05-04 |
Data de Publicação | 2017-05-03 |
Classificação | 4.00/5 Total de 1 Avaliações |
Desenvolvedor | Ryan Nixon Salim |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/drgx/layar-chrome-extention |
URL da Página de Ajuda | https://github.com/drgx/layar-chrome-extention/issues |
Idiomas Suportados | 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" ] } |