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
官方網址 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
    }
}