Three.js Editor Extension

Three.js editor extension

Three.js Editor Extensionคืออะไร?

Three.js Editor Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.clicktorelease.com และคุณลักษณะหลักของมันคือ "Three.js editor extension"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Three.js Editor Extension

ดาวน์โหลดไฟล์ส่วนขยาย 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": [
        "*"
    ]
}