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
公式URL 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
Eメール [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": [
        "*"
    ]
}