First Paint & Page Load Time
First paint time, page load time, to optimize your webpages
First Paint & Page Load Time là gì?
First Paint & Page Load Time là một tiện ích mở rộng Chrome được phát triển bởi https://vijaysutrave.com, và tính năng chính của nó là "First paint time, page load time, to optimize your webpages".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng First Paint & Page Load Time
Tải xuống các tệp mở rộng First Paint & Page Load Time dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | First Paint & Page Load Time |
ID | bjkmldgdbbehjahimccnckggoofdommo |
URL Chính Thức | https://chromewebstore.google.com/detail/first-paint-page-load-tim/bjkmldgdbbehjahimccnckggoofdommo |
Mô tả | First paint time, page load time, to optimize your webpages |
Kích Thước Tệp | 51.18 KB |
Số Lần Cài Đặt | 4,259 |
Phiên Bản Hiện Tại | 1.0.3 |
Cập Nhật Lần Cuối | 2017-11-18 |
Ngày Phát Hành | 2017-11-17 |
Đánh Giá | 4.50/5 Tổng số 14 Đánh Giá |
Nhà Phát Triển | https://vijaysutrave.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/vijaysutrave/chrome-first-paint |
URL Trang Trợ Giúp | https://github.com/vijaysutrave/chrome-first-paint |
Ngôn Ngữ Được Hỗ Trợ | 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" } ] } |