Three.js Editor Extension

Three.js editor extension

Что такое Three.js Editor Extension?

Three.js Editor Extension - это расширение Chrome, разработанное https://www.clicktorelease.com, и его основная функция - "Three.js editor extension".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Three.js Editor Extension

Скачайте файлы расширений Three.js Editor Extension в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        A Chrome DevTools extension to manage any three.js project.                    

Основная информация о расширении

Название Three.js Editor Extension Three.js Editor Extension
ID fbgbekpggeldiacgjkacbkkcbjhmakea
Официальный URL https://chromewebstore.google.com/detail/threejs-editor-extension/fbgbekpggeldiacgjkacbkkcbjhmakea
Описание Three.js editor extension
Размер файла 42.85 KB
Количество установок 4,028
Текущая Версия 1.0.0
Последнее Обновление 2015-07-23
Дата публикации 2015-07-23
Рейтинг 2.70/5 Всего 20 оценок
Разработчик https://www.clicktorelease.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/spite/ThreeJSEditorExtension
URL страницы помощи https://github.com/spite/ThreeJSEditorExtension/issues
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Three.js Editor Extension",
    "version": "1.0.0",
    "minimum_chrome_version": "10.0",
    "devtools_page": "devtools.html",
    "icons": {
        "128": "icon_128.png",
        "48": "icon_48.png",
        "16": "icon_16.png"
    },
    "description": "Three.js editor extension",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "webNavigation"
    ],
    "manifest_version": 2,
    "content_security_policy": "default-src 'self' chrome-extension-resource: ; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-eval'; connect-src *; frame-src *;",
    "web_accessible_resources": [
        "*"
    ]
}