WebGL Texture Monitor

WebGL GUI texture monitoring tool for web content

什么是WebGL Texture Monitor?

WebGL Texture Monitor是由mat开发的Chrome扩展程序,该扩展的主要功能是“WebGL GUI texture monitoring tool for web content”。

扩展截图

screenshot

下载WebGL Texture Monitor扩展crx文件

下载WebGL Texture Monitor扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 WebGL Texture Monitor WebGL Texture Monitor
ID clacogadedfjdojijncmiblblcikgpci
官方URL https://chromewebstore.google.com/detail/webgl-texture-monitor/clacogadedfjdojijncmiblblcikgpci
简介 WebGL GUI texture monitoring tool for web content
文件大小 18.84 KB
安装次数 1,000
当前版本 1.0.0
更新时间 2020-11-19
上架时间 2020-11-18
评分 4.33/5 共3次评分
开发者 mat
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
    ]
}