Three.js Editor Extension

Three.js editor extension

Co to jest Three.js Editor Extension?

Three.js Editor Extension to rozszerzenie Chrome opracowane przez https://www.clicktorelease.com, a jego główną funkcją jest „Three.js editor extension”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Three.js Editor Extension

Pobierz pliki rozszerzeń Three.js Editor Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Three.js Editor Extension Three.js Editor Extension
ID fbgbekpggeldiacgjkacbkkcbjhmakea
Oficjalny URL https://chromewebstore.google.com/detail/threejs-editor-extension/fbgbekpggeldiacgjkacbkkcbjhmakea
Opis Three.js editor extension
Rozmiar pliku 42.85 KB
Liczba instalacji 4,028
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2015-07-23
Data Publikacji 2015-07-23
Ocena 2.70/5 Łącznie 20 Oceny
Deweloper https://www.clicktorelease.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/spite/ThreeJSEditorExtension
Adres URL Strony Pomocy https://github.com/spite/ThreeJSEditorExtension/issues
Obsługiwane Języki 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": [
        "*"
    ]
}