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"
    ]
}