WebGL Texture Monitor
WebGL GUI texture monitoring tool for web content
什麼是WebGL Texture Monitor?
WebGL Texture Monitor是由mat開發的Chrome擴展程式,該擴展的主要功能是“WebGL GUI texture monitoring tool for web content”。
擴展截圖
下載WebGL Texture Monitor擴展crx文件
下載WebGL Texture Monitor擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
A tool thats lets you see what textures are uploaded on the GPU
擴展基本資訊
名稱 | WebGL Texture Monitor |
ID | clacogadedfjdojijncmiblblcikgpci |
官方網址 | https://chromewebstore.google.com/detail/webgl-texture-monitor/clacogadedfjdojijncmiblblcikgpci |
簡介 | WebGL GUI texture monitoring tool for web content |
檔案大小 | 18.84 KB |
安裝次數 | 1,000 |
目前版本 | 1.0.0 |
更新時間 | 2020-11-19 |
上架時間 | 2020-11-18 |
評分 | 4.33/5 共 3 次評分 |
開發者 | mat |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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" ] } |