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
电子邮箱 [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\/*"
            ]
        }
    ]
}