WebGL Texture Monitor

WebGL GUI texture monitoring tool for web content

Что такое WebGL Texture Monitor?

WebGL Texture Monitor - это расширение Chrome, разработанное mat, и его основная функция - "WebGL GUI texture monitoring tool for web content".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения WebGL Texture Monitor

Скачайте файлы расширений 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"
    ]
}