FPS Control
Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames.
Wat is FPS Control?
FPS Control is een Chrome-extensie ontwikkeld door https://www.pixelscommander.com, en de belangrijkste functie is "Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames.".
Extensie Screenshots
Download het CRX-bestand van de extensie FPS Control
Download FPS Control-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | FPS Control |
ID | jolcefamincmnepgphdiojccmfaflane |
Officiële URL | https://chromewebstore.google.com/detail/fps-control/jolcefamincmnepgphdiojccmfaflane |
Beschrijving | Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames. |
Bestandsgrootte | 723 KB |
Aantal Installaties | 5,000 |
Huidige Versie | 0.0.1 |
Laatst Bijgewerkt | 2019-10-23 |
Publicatiedatum | 2019-10-23 |
Beoordeling | 2.67/5 Totaal 27 Beoordelingen |
Ontwikkelaar | https://www.pixelscommander.com |
Betalingswijze | free |
Ondersteunde Talen | 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'" } |