WebGL Texture Monitor
WebGL GUI texture monitoring tool for web content
ما هو WebGL Texture Monitor؟
WebGL Texture Monitor هو إضافة Chrome تم تطويرها بواسطة mat، والميزة الرئيسية لها هي "WebGL GUI texture monitoring tool for web content".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة WebGL Texture Monitor
قم بتنزيل ملفات الامتداد WebGL Texture Monitor بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
A tool thats lets you see what textures are uploaded on the GPU
معلومات أساسية عن التمديد
الاسم | WebGL Texture Monitor |
ID | clacogadedfjdojijncmiblblcikgpci |
عنوان URL الرسمي | 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" ] } |