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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Use your SpaceMouse inside the SketchUp Web app"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में SpaceMouse Driver for SketchUp Web एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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\/*" ] } ] } |