FPS Control
Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames.
Что такое FPS Control?
FPS Control - это расширение Chrome, разработанное https://www.pixelscommander.com, и его основная функция - "Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames.".
Снимки экрана расширения
Скачать файл CRX расширения FPS Control
Скачайте файлы расширений FPS Control в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | FPS Control |
ID | jolcefamincmnepgphdiojccmfaflane |
Официальный URL | https://chromewebstore.google.com/detail/fps-control/jolcefamincmnepgphdiojccmfaflane |
Описание | Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames. |
Размер файла | 723 KB |
Количество установок | 5,000 |
Текущая Версия | 0.0.1 |
Последнее Обновление | 2019-10-23 |
Дата публикации | 2019-10-23 |
Рейтинг | 2.67/5 Всего 27 оценок |
Разработчик | https://www.pixelscommander.com |
Тип оплаты | free |
Поддерживаемые языки | 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'" } |