SpaceMouse Driver for SketchUp Web

Use your SpaceMouse inside the SketchUp Web app

什麼是SpaceMouse Driver for SketchUp Web?

SpaceMouse Driver for SketchUp Web是由Chuanqi Sun開發的Chrome擴展程式,該擴展的主要功能是“Use your SpaceMouse inside the SketchUp Web app”。

擴展截圖

screenshot
screenshot
screenshot

下載SpaceMouse Driver for SketchUp Web擴展crx文件

下載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
官方網址 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\/*"
            ]
        }
    ]
}