FPS Control

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

Cos'è FPS Control?

FPS Control è un'estensione di Chrome sviluppata da https://www.pixelscommander.com, e la sua funzione principale è "Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione FPS Control

Scarica i file di estensione FPS Control in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome FPS Control FPS Control
ID jolcefamincmnepgphdiojccmfaflane
URL Ufficiale https://chromewebstore.google.com/detail/fps-control/jolcefamincmnepgphdiojccmfaflane
Descrizione Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames.
Dimensione del File 723 KB
Conteggio Installazioni 5,000
Versione Corrente 0.0.1
Ultimo Aggiornamento 2019-10-23
Data di Pubblicazione 2019-10-23
Valutazione 2.67/5 Totale 27 Valutazioni
Sviluppatore https://www.pixelscommander.com
Tipo di Pagamento free
Lingue Supportate 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'"
}