Spector.js

Explore and Troubleshoot your WebGL scenes easily.

Qu'est-ce que Spector.js ?

Spector.js est une extension Chrome développée par babylon.js, et sa fonction principale est "Explore and Troubleshoot your WebGL scenes easily.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Spector.js

Téléchargez les fichiers d'extension Spector.js au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Spector.js Spector.js
ID denbgaamihkadbghdceggmchnflmhpmk
URL Officiel https://chromewebstore.google.com/detail/spectorjs/denbgaamihkadbghdceggmchnflmhpmk
Description Explore and Troubleshoot your WebGL scenes easily.
Taille du Fichier 370 KB
Nombre d'Installations 31,249
Version Actuelle 0.9.30
Dernière Mise à Jour 2024-02-02
Date de Publication 2020-03-16
Évaluation 4.61/5 Total 41 Évaluations
Développeur babylon.js
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://spector.babylonjs.com
URL de la Page d'Aide https://github.com/BabylonJS/Spector.js
Langues Prises en Charge 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"
    }
}