Spector.js

Explore and Troubleshoot your WebGL scenes easily.

什么是Spector.js?

Spector.js是由babylon.js开发的Chrome扩展程序,该扩展的主要功能是“Explore and Troubleshoot your WebGL scenes easily.”。

扩展截图

screenshot
screenshot

下载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 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"
    }
}