WebGL Texture Monitor
WebGL GUI texture monitoring tool for web content
Was ist WebGL Texture Monitor?
WebGL Texture Monitor ist eine Chrome-Erweiterung, die von mat entwickelt wurde, und ihr Hauptmerkmal ist "WebGL GUI texture monitoring tool for web content".
Erweiterungsscreenshots
WebGL Texture Monitor-Erweiterungs-CRX-Datei herunterladen
Laden Sie WebGL Texture Monitor-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
A tool thats lets you see what textures are uploaded on the GPU
Grundlegende Informationen zur Erweiterung
Name | WebGL Texture Monitor |
ID | clacogadedfjdojijncmiblblcikgpci |
Offizielle URL | https://chromewebstore.google.com/detail/webgl-texture-monitor/clacogadedfjdojijncmiblblcikgpci |
Beschreibung | WebGL GUI texture monitoring tool for web content |
Dateigröße | 18.84 KB |
Installationsanzahl | 1,000 |
Aktuelle Version | 1.0.0 |
Letztes Update | 2020-11-19 |
Veröffentlichungsdatum | 2020-11-18 |
Bewertung | 4.33/5 Insgesamt 3 Bewertungen |
Entwickler | mat |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |