First Paint & Page Load Time
First paint time, page load time, to optimize your webpages
Vad är First Paint & Page Load Time?
First Paint & Page Load Time är en Chrome-tillägg utvecklad av https://vijaysutrave.com, och dess huvudfunktion är "First paint time, page load time, to optimize your webpages".
Tilläggsskärmbilder
Ladda ner First Paint & Page Load Time-förlängningens CRX-fil
Ladda ner First Paint & Page Load Time-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
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.
Grundläggande Information om Tillägg
Namn | First Paint & Page Load Time |
ID | bjkmldgdbbehjahimccnckggoofdommo |
Officiell webbadress | https://chromewebstore.google.com/detail/first-paint-page-load-tim/bjkmldgdbbehjahimccnckggoofdommo |
Beskrivning | First paint time, page load time, to optimize your webpages |
Filstorlek | 51.18 KB |
Antal Installationer | 4,259 |
Aktuell Version | 1.0.3 |
Senast Uppdaterad | 2017-11-18 |
Publiceringsdatum | 2017-11-17 |
Betyg | 4.50/5 Totalt 14 Betyg |
Utvecklare | https://vijaysutrave.com |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/vijaysutrave/chrome-first-paint |
Hjälpsida URL | https://github.com/vijaysutrave/chrome-first-paint |
Stödda Språk | 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" } ] } |