FPS Control

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

Vad är FPS Control?

FPS Control är en Chrome-tillägg utvecklad av https://www.pixelscommander.com, och dess huvudfunktion är "Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames.".

Tilläggsskärmbilder

screenshot

Ladda ner FPS Control-förlängningens CRX-fil

Ladda ner FPS Control-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn FPS Control FPS Control
ID jolcefamincmnepgphdiojccmfaflane
Officiell webbadress https://chromewebstore.google.com/detail/fps-control/jolcefamincmnepgphdiojccmfaflane
Beskrivning Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames.
Filstorlek 723 KB
Antal Installationer 5,000
Aktuell Version 0.0.1
Senast Uppdaterad 2019-10-23
Publiceringsdatum 2019-10-23
Betyg 2.67/5 Totalt 27 Betyg
Utvecklare https://www.pixelscommander.com
Betalningssätt free
Stödda Språk 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'"
}