WebGL Texture Monitor

WebGL GUI texture monitoring tool for web content

Cos'è WebGL Texture Monitor?

WebGL Texture Monitor è un'estensione di Chrome sviluppata da mat, e la sua funzione principale è "WebGL GUI texture monitoring tool for web content".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione WebGL Texture Monitor

Scarica i file di estensione WebGL Texture Monitor in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome WebGL Texture Monitor WebGL Texture Monitor
ID clacogadedfjdojijncmiblblcikgpci
URL Ufficiale https://chromewebstore.google.com/detail/webgl-texture-monitor/clacogadedfjdojijncmiblblcikgpci
Descrizione WebGL GUI texture monitoring tool for web content
Dimensione del File 18.84 KB
Conteggio Installazioni 1,000
Versione Corrente 1.0.0
Ultimo Aggiornamento 2020-11-19
Data di Pubblicazione 2020-11-18
Valutazione 4.33/5 Totale 3 Valutazioni
Sviluppatore mat
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}