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
电子邮箱 [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": [
        "*"
    ]
}