WebGL Texture Monitor
WebGL GUI texture monitoring tool for web content
Vad är WebGL Texture Monitor?
WebGL Texture Monitor är en Chrome-tillägg utvecklad av mat, och dess huvudfunktion är "WebGL GUI texture monitoring tool for web content".
Tilläggsskärmbilder
Ladda ner WebGL Texture Monitor-förlängningens CRX-fil
Ladda ner WebGL Texture Monitor-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
A tool thats lets you see what textures are uploaded on the GPU
Grundläggande Information om Tillägg
Namn | WebGL Texture Monitor |
ID | clacogadedfjdojijncmiblblcikgpci |
Officiell webbadress | https://chromewebstore.google.com/detail/webgl-texture-monitor/clacogadedfjdojijncmiblblcikgpci |
Beskrivning | WebGL GUI texture monitoring tool for web content |
Filstorlek | 18.84 KB |
Antal Installationer | 1,000 |
Aktuell Version | 1.0.0 |
Senast Uppdaterad | 2020-11-19 |
Publiceringsdatum | 2020-11-18 |
Betyg | 4.33/5 Totalt 3 Betyg |
Utvecklare | mat |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" ] } |