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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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