FPS extension

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

Co to jest FPS extension?

FPS extension to rozszerzenie Chrome opracowane przez Yuri Artiukh, a jego główną funkcją jest „This extension shows a current FPS(frames per second) on a web page.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia FPS extension

Pobierz pliki rozszerzeń FPS extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa FPS extension FPS extension
ID gdkkmimldhefhmmmlalioafomdlahcog
Oficjalny URL https://chromewebstore.google.com/detail/fps-extension/gdkkmimldhefhmmmlalioafomdlahcog
Opis This extension shows a current FPS(frames per second) on a web page.
Rozmiar pliku 12.69 KB
Liczba instalacji 10,000
Aktualna Wersja 0.0.2
Ostatnia Aktualizacja 2017-09-07
Data Publikacji 2017-09-07
Ocena 3.29/5 Łącznie 85 Oceny
Deweloper Yuri Artiukh
Typ Płatności free
Obsługiwane Języki 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
    }
}