FPS Control

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

Apa itu FPS Control?

FPS Control adalah ekstensi Chrome yang dikembangkan oleh https://www.pixelscommander.com, dan fitur utamanya adalah "Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi FPS Control

Unduh file ekstensi FPS Control dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama FPS Control FPS Control
ID jolcefamincmnepgphdiojccmfaflane
URL Resmi https://chromewebstore.google.com/detail/fps-control/jolcefamincmnepgphdiojccmfaflane
Deskripsi Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames.
Ukuran File 723 KB
Jumlah Instalasi 5,000
Versi Saat Ini 0.0.1
Terakhir Diperbarui 2019-10-23
Tanggal Publikasi 2019-10-23
Penilaian 2.67/5 Total 27 Penilaian
Pengembang https://www.pixelscommander.com
Tipe Pembayaran free
Bahasa yang Didukung 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'"
}