Three.js Editor Extension

Three.js editor extension

What is Three.js Editor Extension?

Three.js Editor Extension is a Chrome extension developed by https://www.clicktorelease.com, and its main feature is "Three.js editor extension".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Three.js Editor Extension Extension CRX File

Download Three.js Editor Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Three.js Editor Extension Three.js Editor Extension
ID fbgbekpggeldiacgjkacbkkcbjhmakea
Official URL https://chromewebstore.google.com/detail/threejs-editor-extension/fbgbekpggeldiacgjkacbkkcbjhmakea
Description Three.js editor extension
File Size 42.85 KB
Installation Count 4,028
Current Version 1.0.0
Last Updated 2015-07-23
Publish Date 2015-07-23
Rating 2.70/5 Total 20 Ratings
Developer https://www.clicktorelease.com
Email [email protected]
Payment Type free
Extension Website https://github.com/spite/ThreeJSEditorExtension
Help Page URL https://github.com/spite/ThreeJSEditorExtension/issues
Supported Languages 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": [
        "*"
    ]
}