First Paint & Page Load Time
First paint time, page load time, to optimize your webpages
First Paint & Page Load Timeคืออะไร?
First Paint & Page Load Time เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://vijaysutrave.com และคุณลักษณะหลักของมันคือ "First paint time, page load time, to optimize your webpages"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย First Paint & Page Load Time
ดาวน์โหลดไฟล์ส่วนขยาย First Paint & Page Load Time ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | First Paint & Page Load Time |
ID | bjkmldgdbbehjahimccnckggoofdommo |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/first-paint-page-load-tim/bjkmldgdbbehjahimccnckggoofdommo |
คำอธิบาย | First paint time, page load time, to optimize your webpages |
ขนาดไฟล์ | 51.18 KB |
จำนวนการติดตั้ง | 4,259 |
เวอร์ชันปัจจุบัน | 1.0.3 |
อัปเดตครั้งล่าสุด | 2017-11-18 |
วันที่เผยแพร่ | 2017-11-17 |
คะแนน | 4.50/5 รวมทั้งหมด 14 คะแนน |
ผู้พัฒนา | https://vijaysutrave.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/vijaysutrave/chrome-first-paint |
URL หน้าช่วยเหลือ | https://github.com/vijaysutrave/chrome-first-paint |
ภาษาที่รองรับ | 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" } ] } |