FPS extension

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

Wat is FPS extension?

FPS extension is een Chrome-extensie ontwikkeld door Yuri Artiukh, en de belangrijkste functie is "This extension shows a current FPS(frames per second) on a web page.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie FPS extension

Download FPS extension-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam FPS extension FPS extension
ID gdkkmimldhefhmmmlalioafomdlahcog
Officiële URL https://chromewebstore.google.com/detail/fps-extension/gdkkmimldhefhmmmlalioafomdlahcog
Beschrijving This extension shows a current FPS(frames per second) on a web page.
Bestandsgrootte 12.69 KB
Aantal Installaties 10,000
Huidige Versie 0.0.2
Laatst Bijgewerkt 2017-09-07
Publicatiedatum 2017-09-07
Beoordeling 3.29/5 Totaal 85 Beoordelingen
Ontwikkelaar Yuri Artiukh
Betalingswijze free
Ondersteunde Talen 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
    }
}