FPS Control

Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames.

Co to jest FPS Control?

FPS Control to rozszerzenie Chrome opracowane przez https://www.pixelscommander.com, a jego główną funkcją jest „Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia FPS Control

Pobierz pliki rozszerzeń FPS Control w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa FPS Control FPS Control
ID jolcefamincmnepgphdiojccmfaflane
Oficjalny URL https://chromewebstore.google.com/detail/fps-control/jolcefamincmnepgphdiojccmfaflane
Opis Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames.
Rozmiar pliku 723 KB
Liczba instalacji 5,000
Aktualna Wersja 0.0.1
Ostatnia Aktualizacja 2019-10-23
Data Publikacji 2019-10-23
Ocena 2.67/5 Łącznie 27 Oceny
Deweloper https://www.pixelscommander.com
Typ Płatności free
Obsługiwane Języki 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'"
}