WebGL Texture Monitor

WebGL GUI texture monitoring tool for web content

Co je WebGL Texture Monitor?

WebGL Texture Monitor je rozšíření Chrome vyvinuté mat, a jeho hlavní funkcí je „WebGL GUI texture monitoring tool for web content“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření WebGL Texture Monitor

Stáhněte si soubory rozšíření WebGL Texture Monitor ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název WebGL Texture Monitor WebGL Texture Monitor
ID clacogadedfjdojijncmiblblcikgpci
Oficiální URL https://chromewebstore.google.com/detail/webgl-texture-monitor/clacogadedfjdojijncmiblblcikgpci
Popis WebGL GUI texture monitoring tool for web content
Velikost souboru 18.84 KB
Počet instalací 1,000
Aktuální Verze 1.0.0
Poslední Aktualizace 2020-11-19
Datum Vydání 2020-11-18
Hodnocení 4.33/5 Celkem 3 Hodnocení
Vývojář mat
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
    ]
}