Spector.js
Explore and Troubleshoot your WebGL scenes easily.
Τι είναι το Spector.js;
Το Spector.js είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον babylon.js, και η κύρια λειτουργία του είναι "Explore and Troubleshoot your WebGL scenes easily.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Spector.js
Λήψη αρχείων επέκτασης 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 |
Ηλεκτρονικό ταχυδρομείο | [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" } } |