FPS Control

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

Co je FPS Control?

FPS Control je rozšíření Chrome vyvinuté https://www.pixelscommander.com, a jeho hlavní funkcí je „Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření FPS Control

Stáhněte si soubory rozšíření FPS Control ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název FPS Control FPS Control
ID jolcefamincmnepgphdiojccmfaflane
Oficiální URL https://chromewebstore.google.com/detail/fps-control/jolcefamincmnepgphdiojccmfaflane
Popis Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames.
Velikost souboru 723 KB
Počet instalací 5,000
Aktuální Verze 0.0.1
Poslední Aktualizace 2019-10-23
Datum Vydání 2019-10-23
Hodnocení 2.67/5 Celkem 27 Hodnocení
Vývojář https://www.pixelscommander.com
Typ Platby free
Podporované Jazyky 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'"
}