WebGL Texture Monitor
WebGL GUI texture monitoring tool for web content
Wat is WebGL Texture Monitor?
WebGL Texture Monitor is een Chrome-extensie ontwikkeld door mat, en de belangrijkste functie is "WebGL GUI texture monitoring tool for web content".
Extensie Screenshots
Download het CRX-bestand van de extensie WebGL Texture Monitor
Download WebGL Texture Monitor-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
A tool thats lets you see what textures are uploaded on the GPU
Basisinformatie over de Extensie
Naam | WebGL Texture Monitor |
ID | clacogadedfjdojijncmiblblcikgpci |
Officiële URL | https://chromewebstore.google.com/detail/webgl-texture-monitor/clacogadedfjdojijncmiblblcikgpci |
Beschrijving | WebGL GUI texture monitoring tool for web content |
Bestandsgrootte | 18.84 KB |
Aantal Installaties | 1,000 |
Huidige Versie | 1.0.0 |
Laatst Bijgewerkt | 2020-11-19 |
Publicatiedatum | 2020-11-18 |
Beoordeling | 4.33/5 Totaal 3 Beoordelingen |
Ontwikkelaar | mat |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |