FPS Control
Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames.
Hvad er FPS Control?
FPS Control er en Chrome-udvidelse udviklet af https://www.pixelscommander.com, og dens hovedfunktion er "Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames.".
Udvidelsesskærmbilleder
Download FPS Control-udvidelses-CRX-fil
Download FPS Control-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | FPS Control |
ID | jolcefamincmnepgphdiojccmfaflane |
Officiel URL | https://chromewebstore.google.com/detail/fps-control/jolcefamincmnepgphdiojccmfaflane |
Beskrivelse | Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames. |
Filstørrelse | 723 KB |
Antal Installationer | 5,000 |
Nuværende Version | 0.0.1 |
Senest Opdateret | 2019-10-23 |
Udgivelsesdato | 2019-10-23 |
Bedømmelse | 2.67/5 Samlet 27 Bedømmelser |
Udvikler | https://www.pixelscommander.com |
Betalingsmetode | free |
Understøttede Sprog | 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'" } |