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
公式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
Eメール [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\/*"
            ]
        }
    ]
}