Three.js Editor Extension

Three.js editor extension

什麼是Three.js Editor Extension?

Three.js Editor Extension是由https://www.clicktorelease.com開發的Chrome擴展程式,該擴展的主要功能是“Three.js editor extension”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Three.js Editor Extension擴展crx文件

下載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
官方網址 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": [
        "*"
    ]
}