Three.js Editor Extension

Three.js editor extension

Cos'è Three.js Editor Extension?

Three.js Editor Extension è un'estensione di Chrome sviluppata da https://www.clicktorelease.com, e la sua funzione principale è "Three.js editor extension".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Three.js Editor Extension

Scarica i file di estensione Three.js Editor Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Three.js Editor Extension Three.js Editor Extension
ID fbgbekpggeldiacgjkacbkkcbjhmakea
URL Ufficiale https://chromewebstore.google.com/detail/threejs-editor-extension/fbgbekpggeldiacgjkacbkkcbjhmakea
Descrizione Three.js editor extension
Dimensione del File 42.85 KB
Conteggio Installazioni 4,028
Versione Corrente 1.0.0
Ultimo Aggiornamento 2015-07-23
Data di Pubblicazione 2015-07-23
Valutazione 2.70/5 Totale 20 Valutazioni
Sviluppatore https://www.clicktorelease.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/spite/ThreeJSEditorExtension
URL della Pagina di Aiuto https://github.com/spite/ThreeJSEditorExtension/issues
Lingue Supportate 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": [
        "*"
    ]
}