Spector.js
Explore and Troubleshoot your WebGL scenes easily.
Spector.js là gì?
Spector.js là một tiện ích mở rộng Chrome được phát triển bởi babylon.js, và tính năng chính của nó là "Explore and Troubleshoot your WebGL scenes easily.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Spector.js
Tải xuống các tệp mở rộng Spector.js dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Spector is a tool aim to WebGl developers willing to know what happens on their context. It enables capturing all the available information from a frame. You will be empowered to look at your entire commands list with their associated visual states and context information. You will be able to Explore and Troubleshoot your WebGL and WebGL2 scenes easily. This is compatible with any WebGL capable browser and all the web based 3d engines as well as vanilla scripts.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Spector.js |
ID | denbgaamihkadbghdceggmchnflmhpmk |
URL Chính Thức | https://chromewebstore.google.com/detail/spectorjs/denbgaamihkadbghdceggmchnflmhpmk |
Mô tả | Explore and Troubleshoot your WebGL scenes easily. |
Kích Thước Tệp | 370 KB |
Số Lần Cài Đặt | 31,249 |
Phiên Bản Hiện Tại | 0.9.30 |
Cập Nhật Lần Cuối | 2024-02-02 |
Ngày Phát Hành | 2020-03-16 |
Đánh Giá | 4.61/5 Tổng số 41 Đánh Giá |
Nhà Phát Triển | babylon.js |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://spector.babylonjs.com |
URL Trang Trợ Giúp | https://github.com/BabylonJS/Spector.js |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "minimum_chrome_version": "20", "name": "Spector.js", "version": "0.9.30", "homepage_url": "http:\/\/spector.babylonjs.com\/", "description": "Explore and Troubleshoot your WebGL scenes easily.", "author": "@SpectorJS", "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "page_action": { "default_icon": { "19": "spectorjs-19.png", "38": "spectorjs-38.png" }, "default_title": "Debug with Spector" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "file:\/\/*\/*", "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "spector.bundle.func.js", "contentScript.js" ], "run_at": "document_start", "all_frames": true } ], "web_accessible_resources": [ "spector.bundle.js", "popup.js", "result.js" ], "icons": { "48": "spectorjs-48.png", "128": "spectorjs-128128.png" } } |