WebGL Texture Monitor

WebGL GUI texture monitoring tool for web content

What is WebGL Texture Monitor?

WebGL Texture Monitor is a Chrome extension developed by mat, and its main feature is "WebGL GUI texture monitoring tool for web content".

Extension Screenshots

screenshot

Download WebGL Texture Monitor Extension CRX File

Download WebGL Texture Monitor extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name WebGL Texture Monitor WebGL Texture Monitor
ID clacogadedfjdojijncmiblblcikgpci
Official URL https://chromewebstore.google.com/detail/webgl-texture-monitor/clacogadedfjdojijncmiblblcikgpci
Description WebGL GUI texture monitoring tool for web content
File Size 18.84 KB
Installation Count 1,000
Current Version 1.0.0
Last Updated 2020-11-19
Publish Date 2020-11-18
Rating 4.33/5 Total 3 Ratings
Developer mat
Email [email protected]
Payment Type free
Supported Languages 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"
    ]
}