FPS Control
Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames.
Was ist FPS Control?
FPS Control ist eine Chrome-Erweiterung, die von https://www.pixelscommander.com entwickelt wurde, und ihr Hauptmerkmal ist "Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames.".
Erweiterungsscreenshots
FPS Control-Erweiterungs-CRX-Datei herunterladen
Laden Sie FPS Control-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | FPS Control |
ID | jolcefamincmnepgphdiojccmfaflane |
Offizielle URL | https://chromewebstore.google.com/detail/fps-control/jolcefamincmnepgphdiojccmfaflane |
Beschreibung | Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames. |
Dateigröße | 723 KB |
Installationsanzahl | 5,000 |
Aktuelle Version | 0.0.1 |
Letztes Update | 2019-10-23 |
Veröffentlichungsdatum | 2019-10-23 |
Bewertung | 2.67/5 Insgesamt 27 Bewertungen |
Entwickler | https://www.pixelscommander.com |
Zahlungsart | free |
Unterstützte Sprachen | 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'" } |