FPS Control

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

Qu'est-ce que FPS Control ?

FPS Control est une extension Chrome développée par https://www.pixelscommander.com, et sa fonction principale est "Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension FPS Control

Téléchargez les fichiers d'extension FPS Control au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom FPS Control FPS Control
ID jolcefamincmnepgphdiojccmfaflane
URL Officiel https://chromewebstore.google.com/detail/fps-control/jolcefamincmnepgphdiojccmfaflane
Description Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames.
Taille du Fichier 723 KB
Nombre d'Installations 5,000
Version Actuelle 0.0.1
Dernière Mise à Jour 2019-10-23
Date de Publication 2019-10-23
Évaluation 2.67/5 Total 27 Évaluations
Développeur https://www.pixelscommander.com
Type de Paiement free
Langues Prises en Charge 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'"
}