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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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\/*"
            ]
        }
    ]
}