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