WebGL Texture Monitor
WebGL GUI texture monitoring tool for web content
Apa itu WebGL Texture Monitor?
WebGL Texture Monitor adalah ekstensi Chrome yang dikembangkan oleh mat, dan fitur utamanya adalah "WebGL GUI texture monitoring tool for web content".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi WebGL Texture Monitor
Unduh file ekstensi WebGL Texture Monitor dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
A tool thats lets you see what textures are uploaded on the GPU
Informasi Dasar Ekstensi
Nama | WebGL Texture Monitor |
ID | clacogadedfjdojijncmiblblcikgpci |
URL Resmi | https://chromewebstore.google.com/detail/webgl-texture-monitor/clacogadedfjdojijncmiblblcikgpci |
Deskripsi | WebGL GUI texture monitoring tool for web content |
Ukuran File | 18.84 KB |
Jumlah Instalasi | 1,000 |
Versi Saat Ini | 1.0.0 |
Terakhir Diperbarui | 2020-11-19 |
Tanggal Publikasi | 2020-11-18 |
Penilaian | 4.33/5 Total 3 Penilaian |
Pengembang | mat |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } |