FPS Control

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

FPS Controlとは何ですか?

FPS Controlはhttps://www.pixelscommander.comによって開発されたChromeの拡張機能で、その主な機能は「Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames.」です。

拡張機能のスクリーンショット

screenshot

FPS Control拡張機能のCRXファイルをダウンロード

FPS Control拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 FPS Control FPS Control
ID jolcefamincmnepgphdiojccmfaflane
公式URL https://chromewebstore.google.com/detail/fps-control/jolcefamincmnepgphdiojccmfaflane
説明 Control FPS in your browser for testing, performance investigation or to stress your app with dropped frames.
ファイルサイズ 723 KB
インストール数 5,000
現在のバージョン 0.0.1
最終更新日 2019-10-23
公開日 2019-10-23
評価 2.67/5 合計 27 レビュー
開発者 https://www.pixelscommander.com
支払い方法 free
対応言語 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'"
}