SpaceMouse Driver for SketchUp Web
Use your SpaceMouse inside the SketchUp Web app
Τι είναι το SpaceMouse Driver for SketchUp Web;
Το SpaceMouse Driver for SketchUp Web είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Chuanqi Sun, και η κύρια λειτουργία του είναι "Use your SpaceMouse inside the SketchUp Web app".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης SpaceMouse Driver for SketchUp Web
Λήψη αρχείων επέκτασης 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 |
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\/*" ] } ] } |