WebGL Texture Monitor

WebGL GUI texture monitoring tool for web content

WebGL Texture Monitor là gì?

WebGL Texture Monitor là một tiện ích mở rộng Chrome được phát triển bởi mat, và tính năng chính của nó là "WebGL GUI texture monitoring tool for web content".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng WebGL Texture Monitor

Tải xuống các tệp mở rộng WebGL Texture Monitor dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên WebGL Texture Monitor WebGL Texture Monitor
ID clacogadedfjdojijncmiblblcikgpci
URL Chính Thức https://chromewebstore.google.com/detail/webgl-texture-monitor/clacogadedfjdojijncmiblblcikgpci
Mô tả WebGL GUI texture monitoring tool for web content
Kích Thước Tệp 18.84 KB
Số Lần Cài Đặt 1,000
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2020-11-19
Ngày Phát Hành 2020-11-18
Đánh Giá 4.33/5 Tổng số 3 Đánh Giá
Nhà Phát Triển mat
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}