Spector.js

Explore and Troubleshoot your WebGL scenes easily.

Spector.jsคืออะไร?

Spector.js เป็นส่วนขยายของ Chrome ที่พัฒนาโดย babylon.js และคุณลักษณะหลักของมันคือ "Explore and Troubleshoot your WebGL scenes easily."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ 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 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"
    }
}