Spector.js
Explore and Troubleshoot your WebGL scenes easily.
Cos'è Spector.js?
Spector.js è un'estensione di Chrome sviluppata da babylon.js, e la sua funzione principale è "Explore and Troubleshoot your WebGL scenes easily.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Spector.js
Scarica i file di estensione Spector.js in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Spector.js |
ID | denbgaamihkadbghdceggmchnflmhpmk |
URL Ufficiale | https://chromewebstore.google.com/detail/spectorjs/denbgaamihkadbghdceggmchnflmhpmk |
Descrizione | Explore and Troubleshoot your WebGL scenes easily. |
Dimensione del File | 370 KB |
Conteggio Installazioni | 31,249 |
Versione Corrente | 0.9.30 |
Ultimo Aggiornamento | 2024-02-02 |
Data di Pubblicazione | 2020-03-16 |
Valutazione | 4.61/5 Totale 41 Valutazioni |
Sviluppatore | babylon.js |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://spector.babylonjs.com |
URL della Pagina di Aiuto | https://github.com/BabylonJS/Spector.js |
Lingue Supportate | 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" } } |