WebGL Texture Monitor

WebGL GUI texture monitoring tool for web content

Co to jest WebGL Texture Monitor?

WebGL Texture Monitor to rozszerzenie Chrome opracowane przez mat, a jego główną funkcją jest „WebGL GUI texture monitoring tool for web content”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia WebGL Texture Monitor

Pobierz pliki rozszerzeń WebGL Texture Monitor 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

                        A tool thats lets you see what textures are uploaded on the GPU                    

Podstawowe informacje o rozszerzeniu

Nazwa WebGL Texture Monitor WebGL Texture Monitor
ID clacogadedfjdojijncmiblblcikgpci
Oficjalny URL https://chromewebstore.google.com/detail/webgl-texture-monitor/clacogadedfjdojijncmiblblcikgpci
Opis WebGL GUI texture monitoring tool for web content
Rozmiar pliku 18.84 KB
Liczba instalacji 1,000
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2020-11-19
Data Publikacji 2020-11-18
Ocena 4.33/5 Łącznie 3 Oceny
Deweloper mat
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "WebGL Texture Monitor",
    "version": "1.0.0",
    "description": "WebGL GUI texture monitoring tool for web content",
    "author": "Goodboy Digital",
    "permissions": [
        "activeTab"
    ],
    "page_action": {
        "default_icon": "icons\/icon-off.png",
        "default_title": "Inspect with TextureMonitor"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "file:\/\/*\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": true,
            "run_at": "document_start",
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "TextureMonitor.js",
        "TextureMonitor.css"
    ]
}