SpaceMouse Driver for SketchUp Web

Use your SpaceMouse inside the SketchUp Web app

SpaceMouse Driver for SketchUp Webคืออะไร?

SpaceMouse Driver for SketchUp Web เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Chuanqi Sun และคุณลักษณะหลักของมันคือ "Use your SpaceMouse inside the SketchUp Web app"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SpaceMouse Driver for SketchUp Web

ดาวน์โหลดไฟล์ส่วนขยาย SpaceMouse Driver for SketchUp Web ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension brings your 3DConnexion SpaceMouse to the SketchUp Web app. Once installed, it auto-activates and gives you 5 degrees of freedom for direct manipulation.

- Move Up/Down, Left/Right, Back/Forward
- Pitch Up/Down
- Yaw Clockwise/Counterclockwise

You can also customize the overall sensitivity and invert individual axis.

This project is free and open source. You can learn more about the project, report a bug, or suggest an idea on GitHub: https://github.com/chuanqisun/spacemouse-anywhere

**Disclaimer**
This project is not endorsed by Trimble or 3Dconnexion, though I'm happy to collaborate with both companies to improve the user experience.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ SpaceMouse Driver for SketchUp Web SpaceMouse Driver for SketchUp Web
ID ggjjgcdhnigahiokgcknccnkcddgjknf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/spacemouse-driver-for-ske/ggjjgcdhnigahiokgcknccnkcddgjknf
คำอธิบาย Use your SpaceMouse inside the SketchUp Web app
ขนาดไฟล์ 81.22 KB
จำนวนการติดตั้ง 774
เวอร์ชันปัจจุบัน 0.0.2
อัปเดตครั้งล่าสุด 2022-12-14
วันที่เผยแพร่ 2022-12-13
คะแนน 3.33/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Chuanqi Sun
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/chuanqisun/spacemouse-anywhere
URL หน้าช่วยเหลือ https://github.com/chuanqisun/spacemouse-anywhere/issues/new?assignees=&labels=sketchup&template=sketchup-web-extension.md&title=
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SpaceMouse Driver for SketchUp Web",
    "description": "Use your SpaceMouse inside the SketchUp Web app",
    "version": "0.0.2",
    "manifest_version": 3,
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/[email protected]",
            "32": "\/images\/[email protected]",
            "48": "\/images\/[email protected]",
            "128": "\/images\/[email protected]"
        }
    },
    "icons": {
        "16": "\/images\/[email protected]",
        "48": "\/images\/[email protected]",
        "128": "\/images\/[email protected]"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.sketchup.com\/*"
            ],
            "js": [
                "boot-loader.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "output-thread.js",
                "input-thread.html"
            ],
            "matches": [
                "https:\/\/app.sketchup.com\/*"
            ]
        }
    ]
}