Spector.js
Explore and Troubleshoot your WebGL scenes easily.
Spector.jsとは何ですか?
Spector.jsはbabylon.jsによって開発されたChromeの拡張機能で、その主な機能は「Explore and Troubleshoot your WebGL scenes easily.」です。
拡張機能のスクリーンショット
Spector.js拡張機能のCRXファイルをダウンロード
Spector.js拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | Spector.js |
ID | denbgaamihkadbghdceggmchnflmhpmk |
公式URL | https://chromewebstore.google.com/detail/spectorjs/denbgaamihkadbghdceggmchnflmhpmk |
説明 | Explore and Troubleshoot your WebGL scenes easily. |
ファイルサイズ | 370 KB |
インストール数 | 31,249 |
現在のバージョン | 0.9.30 |
最終更新日 | 2024-02-02 |
公開日 | 2020-03-16 |
評価 | 4.61/5 合計 41 レビュー |
開発者 | babylon.js |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://spector.babylonjs.com |
ヘルプページのURL | https://github.com/BabylonJS/Spector.js |
対応言語 | 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" } } |