FPS Control
Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames.
FPS Controlคืออะไร?
FPS Control เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.pixelscommander.com และคุณลักษณะหลักของมันคือ "Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย FPS Control
ดาวน์โหลดไฟล์ส่วนขยาย FPS Control ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Dev / QA browser extension which allows to limit FPS and emulate FPS drops using Request Animation Frame. Useful to test your application for low frames scenario or dropped frames. Select parameters from drop downs and they are applied instantly.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | FPS Control |
ID | jolcefamincmnepgphdiojccmfaflane |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/fps-control/jolcefamincmnepgphdiojccmfaflane |
คำอธิบาย | Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames. |
ขนาดไฟล์ | 723 KB |
จำนวนการติดตั้ง | 5,000 |
เวอร์ชันปัจจุบัน | 0.0.1 |
อัปเดตครั้งล่าสุด | 2019-10-23 |
วันที่เผยแพร่ | 2019-10-23 |
คะแนน | 2.67/5 รวมทั้งหมด 27 คะแนน |
ผู้พัฒนา | https://www.pixelscommander.com |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames.", "version": "0.0.1", "name": "FPS Control", "options_page": "options.html", "background": { "page": "background.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.bundle.js" ], "run_at": "document_end" } ], "browser_action": { "default_popup": "popup.html", "default_icon": "icon-34.png" }, "icons": { "128": "icon-128.png" }, "manifest_version": 2, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |