Time to 60fps
This extension shows the time it takes for a web page to reach 60fps
Time to 60fpsคืออะไร?
Time to 60fps เป็นส่วนขยายของ Chrome ที่พัฒนาโดย feederror และคุณลักษณะหลักของมันคือ "This extension shows the time it takes for a web page to reach 60fps"
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Time to 60fps
ดาวน์โหลดไฟล์ส่วนขยาย Time to 60fps ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Instead of measuring a pages performance based on Dom Interactive/Dom Content Ready or Page Load events. This extension takes a slightly alternative approach and measures it based on when a page reaches a frame rate of 60fps. This time normally aligns with when a page has finished doing all it's loading, parsing and running of HTML, CSS and Javascript.
Just load any page with the extension active and when the page reaches a constant 50-60fps over a full second it will then display the time it took to reach this constant frame rate in seconds. Only 5 digits can be displayed so accuracy may be lost for really slow pages.
Clicking the icon will refresh the page.
Some pages (such as chrome://extensions ) can not be scripted so the timing will never show up. ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | bipalekffdnpgbcfagbabaoocajncige |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/time-to-60fps/bipalekffdnpgbcfagbabaoocajncige |
| คำอธิบาย | This extension shows the time it takes for a web page to reach 60fps |
| ขนาดไฟล์ | 10.28 KB |
| จำนวนการติดตั้ง | 222 |
| เวอร์ชันปัจจุบัน | 1.1 |
| อัปเดตครั้งล่าสุด | 2016-01-03 |
| วันที่เผยแพร่ | 2016-01-03 |
| คะแนน | 3.00/5 รวมทั้งหมด 1 คะแนน |
| ผู้พัฒนา | feederror |
| ประเภทการชำระเงิน | free |
| ภาษาที่รองรับ | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Time to 60fps",
"description": "This extension shows the time it takes for a web page to reach 60fps",
"version": "1.1",
"browser_action": {
"default_icon": "60fps-19x19.png"
},
"icons": {
"48": "60fps-48x48.png",
"128": "60fps-128x128.png"
},
"permissions": [
"activeTab"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"time-to-60fps.js"
],
"run_at": "document_start"
}
]
} | |