Spector.js
Explore and Troubleshoot your WebGL scenes easily.
O que é Spector.js?
Spector.js é uma extensão do Chrome desenvolvida por babylon.js, e sua principal característica é "Explore and Troubleshoot your WebGL scenes easily.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Spector.js
Baixe arquivos de extensão Spector.js no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Spector.js |
ID | denbgaamihkadbghdceggmchnflmhpmk |
URL Oficial | https://chromewebstore.google.com/detail/spectorjs/denbgaamihkadbghdceggmchnflmhpmk |
Descrição | Explore and Troubleshoot your WebGL scenes easily. |
Tamanho do Arquivo | 370 KB |
Contagem de Instalações | 31,249 |
Versão Atual | 0.9.30 |
Última Atualização | 2024-02-02 |
Data de Publicação | 2020-03-16 |
Classificação | 4.61/5 Total de 41 Avaliações |
Desenvolvedor | babylon.js |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://spector.babylonjs.com |
URL da Página de Ajuda | https://github.com/BabylonJS/Spector.js |
Idiomas Suportados | 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" } } |