WebGL Texture Monitor
WebGL GUI texture monitoring tool for web content
Qu'est-ce que WebGL Texture Monitor ?
WebGL Texture Monitor est une extension Chrome développée par mat, et sa fonction principale est "WebGL GUI texture monitoring tool for web content".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension WebGL Texture Monitor
Téléchargez les fichiers d'extension WebGL Texture Monitor au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
A tool thats lets you see what textures are uploaded on the GPU
Informations de Base sur l'Extension
Nom | WebGL Texture Monitor |
ID | clacogadedfjdojijncmiblblcikgpci |
URL Officiel | https://chromewebstore.google.com/detail/webgl-texture-monitor/clacogadedfjdojijncmiblblcikgpci |
Description | WebGL GUI texture monitoring tool for web content |
Taille du Fichier | 18.84 KB |
Nombre d'Installations | 1,000 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2020-11-19 |
Date de Publication | 2020-11-18 |
Évaluation | 4.33/5 Total 3 Évaluations |
Développeur | mat |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |