Three.js Editor Extension

Three.js editor extension

Co je Three.js Editor Extension?

Three.js Editor Extension je rozšíření Chrome vyvinuté https://www.clicktorelease.com, a jeho hlavní funkcí je „Three.js editor extension“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Three.js Editor Extension

Stáhněte si soubory rozšíření Three.js Editor Extension ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Three.js Editor Extension Three.js Editor Extension
ID fbgbekpggeldiacgjkacbkkcbjhmakea
Oficiální URL https://chromewebstore.google.com/detail/threejs-editor-extension/fbgbekpggeldiacgjkacbkkcbjhmakea
Popis Three.js editor extension
Velikost souboru 42.85 KB
Počet instalací 4,028
Aktuální Verze 1.0.0
Poslední Aktualizace 2015-07-23
Datum Vydání 2015-07-23
Hodnocení 2.70/5 Celkem 20 Hodnocení
Vývojář https://www.clicktorelease.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/spite/ThreeJSEditorExtension
URL Stránky Nápovědy https://github.com/spite/ThreeJSEditorExtension/issues
Podporované Jazyky 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": [
        "*"
    ]
}