SimplyPrint
Send files directly to SimplyPrint
Τι είναι το SimplyPrint;
Το SimplyPrint είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον simplyprint3d, και η κύρια λειτουργία του είναι "Send files directly to SimplyPrint".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης SimplyPrint
Λήψη αρχείων επέκτασης SimplyPrint σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Instantly 3D print or slice files from Thingiverse and Printables - anywhere, anytime, from any device, wirelessly. This extension adds a "Send to SimplyPrint" button to the 3D model sharing sites, Thingiverse and Printables, allowing you to, with 1 click, send a given file to the SimplyPrint Cloud platform, where you can print the file, slice or save it, or add it to your print queue! Features; - Adds a "Send to SimplyPrint" button to; Thingiverse & Printables 3D models - Adds a SimplyPrint icon in your browser toolbar, which on-click takes you to the web-panel (can be removed)
Βασικές Πληροφορίες Επέκτασης
Όνομα | SimplyPrint |
ID | ajimllenbipapigpfnncfenedhenkpfb |
Επίσημο URL | https://chromewebstore.google.com/detail/simplyprint/ajimllenbipapigpfnncfenedhenkpfb |
Περιγραφή | Send files directly to SimplyPrint |
Μέγεθος Αρχείου | 105 KB |
Αριθμός Εγκαταστάσεων | 280 |
Τρέχουσα Έκδοση | 1.3 |
Τελευταία Ενημέρωση | 2023-10-06 |
Ημερομηνία Δημοσίευσης | 2023-08-14 |
Αξιολόγηση | 5.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | simplyprint3d |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://simplyprint.io/ |
Διεύθυνση URL της Σελίδας Βοήθειας | https://simplyprint.io/contact |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "SimplyPrint", "description": "Send files directly to SimplyPrint", "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png", "256": "icons\/icon256.png" }, "permissions": [], "content_scripts": [ { "matches": [ "https:\/\/www.thingiverse.com\/thing:*" ], "js": [ "content_scripts\/thingiverse.js" ] }, { "matches": [ "https:\/\/*.printables.com\/*" ], "js": [ "content_scripts\/printables.js" ] } ], "web_accessible_resources": [ { "resources": [ "icons\/icon_black.svg" ], "matches": [ "https:\/\/*.printables.com\/*", "https:\/\/www.thingiverse.com\/*" ] } ], "action": { "default_icon": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_popup": "popup\/popup.html" }, "version": "1.3" } |