First Paint & Page Load Time
First paint time, page load time, to optimize your webpages
O que é First Paint & Page Load Time?
First Paint & Page Load Time é uma extensão do Chrome desenvolvida por https://vijaysutrave.com, e sua principal característica é "First paint time, page load time, to optimize your webpages".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão First Paint & Page Load Time
Baixe arquivos de extensão First Paint & Page Load Time 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
Displays the First Paint time in the browser menu. Now you can see page stats like the top ten time consuming requests on the page, the distribution of resources on the page, and other stats like memory, etc, illustrated with pretty looking graphs. Source Code available at : https://github.com/vijaysutrave/chrome-first-paint This can give you insights in reducing your load times and optimising for quicker render times. This extension uses the Resource Timing API and the Performance API in the browser.
Informações Básicas da Extensão
Nome | First Paint & Page Load Time |
ID | bjkmldgdbbehjahimccnckggoofdommo |
URL Oficial | https://chromewebstore.google.com/detail/first-paint-page-load-tim/bjkmldgdbbehjahimccnckggoofdommo |
Descrição | First paint time, page load time, to optimize your webpages |
Tamanho do Arquivo | 51.18 KB |
Contagem de Instalações | 4,259 |
Versão Atual | 1.0.3 |
Última Atualização | 2017-11-18 |
Data de Publicação | 2017-11-17 |
Classificação | 4.50/5 Total de 14 Avaliações |
Desenvolvedor | https://vijaysutrave.com |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/vijaysutrave/chrome-first-paint |
URL da Página de Ajuda | https://github.com/vijaysutrave/chrome-first-paint |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "First Paint & Page Load Time", "short_name": "First Paint Time", "version": "1.0.3", "description": "First paint time, page load time, to optimize your webpages", "browser_action": { "default_icon": "icons\/timer48.png", "default_popup": "popup.html" }, "icons": { "16": "icons\/timer16.png", "48": "icons\/timer48.png", "128": "icons\/timer128.png" }, "background": { "scripts": [ "background.js" ] }, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "domTimes.js" ], "run_at": "document_start" } ] } |