FPS Control
Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames.
O que é FPS Control?
FPS Control é uma extensão do Chrome desenvolvida por https://www.pixelscommander.com, e sua principal característica é "Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão FPS Control
Baixe arquivos de extensão FPS Control no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | FPS Control |
ID | jolcefamincmnepgphdiojccmfaflane |
URL Oficial | https://chromewebstore.google.com/detail/fps-control/jolcefamincmnepgphdiojccmfaflane |
Descrição | Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames. |
Tamanho do Arquivo | 723 KB |
Contagem de Instalações | 5,000 |
Versão Atual | 0.0.1 |
Última Atualização | 2019-10-23 |
Data de Publicação | 2019-10-23 |
Classificação | 2.67/5 Total de 27 Avaliações |
Desenvolvedor | https://www.pixelscommander.com |
Tipo de Pagamento | free |
Idiomas Suportados | 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'" } |