FPS extension

This extension shows a current FPS(frames per second) on a web page.

FPS extensionとは何ですか?

FPS extensionはYuri Artiukhによって開発されたChromeの拡張機能で、その主な機能は「This extension shows a current FPS(frames per second) on a web page.」です。

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

screenshot

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

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

拡張機能の使用方法

                        This is extension for debugging website perfomance. It's just easier to turn on than the developer tools one. inspired by similar extension which is no longer available in Chrome Store.                    

拡張機能の基本情報

名前 FPS extension FPS extension
ID gdkkmimldhefhmmmlalioafomdlahcog
公式URL https://chromewebstore.google.com/detail/fps-extension/gdkkmimldhefhmmmlalioafomdlahcog
説明 This extension shows a current FPS(frames per second) on a web page.
ファイルサイズ 12.69 KB
インストール数 10,000
現在のバージョン 0.0.2
最終更新日 2017-09-07
公開日 2017-09-07
評価 3.29/5 合計 85 レビュー
開発者 Yuri Artiukh
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "FPS extension",
    "description": "This extension shows a current FPS(frames per second) on a web page.",
    "version": "0.0.2",
    "browser_action": {
        "default_icon": "icon128.png"
    },
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "fps.js"
            ],
            "css": [
                "fps.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}