FPS Control
Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames.
What is FPS Control?
FPS Control is a Chrome extension developed by https://www.pixelscommander.com, and its main feature is "Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames.".
Extension Screenshots
Download FPS Control Extension CRX File
Download FPS Control extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | FPS Control |
ID | jolcefamincmnepgphdiojccmfaflane |
Official URL | https://chromewebstore.google.com/detail/fps-control/jolcefamincmnepgphdiojccmfaflane |
Description | Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames. |
File Size | 723 KB |
Installation Count | 5,000 |
Current Version | 0.0.1 |
Last Updated | 2019-10-23 |
Publish Date | 2019-10-23 |
Rating | 2.67/5 Total 27 Ratings |
Developer | https://www.pixelscommander.com |
Payment Type | free |
Supported Languages | 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'" } |