FPS extension

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

What is FPS extension?

FPS extension is a Chrome extension developed by Yuri Artiukh, and its main feature is "This extension shows a current FPS(frames per second) on a web page.".

Extension Screenshots

screenshot

Download FPS extension Extension CRX File

Download FPS extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name FPS extension FPS extension
ID gdkkmimldhefhmmmlalioafomdlahcog
Official URL https://chromewebstore.google.com/detail/fps-extension/gdkkmimldhefhmmmlalioafomdlahcog
Description This extension shows a current FPS(frames per second) on a web page.
File Size 12.69 KB
Installation Count 10,000
Current Version 0.0.2
Last Updated 2017-09-07
Publish Date 2017-09-07
Rating 3.29/5 Total 85 Ratings
Developer Yuri Artiukh
Payment Type free
Supported Languages 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
    }
}