FPS Control
Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames.
FPS Control là gì?
FPS Control là một tiện ích mở rộng Chrome được phát triển bởi https://www.pixelscommander.com, và tính năng chính của nó là "Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames.".
Ả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 FPS Control
Tải xuống các tệp mở rộng FPS Control 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
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | FPS Control |
ID | jolcefamincmnepgphdiojccmfaflane |
URL Chính Thức | https://chromewebstore.google.com/detail/fps-control/jolcefamincmnepgphdiojccmfaflane |
Mô tả | Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames. |
Kích Thước Tệp | 723 KB |
Số Lần Cài Đặt | 5,000 |
Phiên Bản Hiện Tại | 0.0.1 |
Cập Nhật Lần Cuối | 2019-10-23 |
Ngày Phát Hành | 2019-10-23 |
Đánh Giá | 2.67/5 Tổng số 27 Đánh Giá |
Nhà Phát Triển | https://www.pixelscommander.com |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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'" } |