Three.js Editor Extension

Three.js editor extension

Apa itu Three.js Editor Extension?

Three.js Editor Extension adalah ekstensi Chrome yang dikembangkan oleh https://www.clicktorelease.com, dan fitur utamanya adalah "Three.js editor extension".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Three.js Editor Extension

Unduh file ekstensi Three.js Editor Extension dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Three.js Editor Extension Three.js Editor Extension
ID fbgbekpggeldiacgjkacbkkcbjhmakea
URL Resmi https://chromewebstore.google.com/detail/threejs-editor-extension/fbgbekpggeldiacgjkacbkkcbjhmakea
Deskripsi Three.js editor extension
Ukuran File 42.85 KB
Jumlah Instalasi 4,028
Versi Saat Ini 1.0.0
Terakhir Diperbarui 2015-07-23
Tanggal Publikasi 2015-07-23
Penilaian 2.70/5 Total 20 Penilaian
Pengembang https://www.clicktorelease.com
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/spite/ThreeJSEditorExtension
URL Halaman Bantuan https://github.com/spite/ThreeJSEditorExtension/issues
Bahasa yang Didukung 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": [
        "*"
    ]
}