SpaceMouse Driver for SketchUp Web
Use your SpaceMouse inside the SketchUp Web app
SpaceMouse Driver for SketchUp Web là gì?
SpaceMouse Driver for SketchUp Web là một tiện ích mở rộng Chrome được phát triển bởi Chuanqi Sun, và tính năng chính của nó là "Use your SpaceMouse inside the SketchUp Web app".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng SpaceMouse Driver for SketchUp Web
Tải xuống các tệp mở rộng SpaceMouse Driver for SketchUp Web dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | SpaceMouse Driver for SketchUp Web |
ID | ggjjgcdhnigahiokgcknccnkcddgjknf |
URL Chính Thức | https://chromewebstore.google.com/detail/spacemouse-driver-for-ske/ggjjgcdhnigahiokgcknccnkcddgjknf |
Mô tả | Use your SpaceMouse inside the SketchUp Web app |
Kích Thước Tệp | 81.22 KB |
Số Lần Cài Đặt | 774 |
Phiên Bản Hiện Tại | 0.0.2 |
Cập Nhật Lần Cuối | 2022-12-14 |
Ngày Phát Hành | 2022-12-13 |
Đánh Giá | 3.33/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Chuanqi Sun |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/chuanqisun/spacemouse-anywhere |
URL Trang Trợ Giúp | https://github.com/chuanqisun/spacemouse-anywhere/issues/new?assignees=&labels=sketchup&template=sketchup-web-extension.md&title= |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } ] } |