Print the Thing
Quickly and easily print 3D models from Thingiverse via Print a Thing with the click of a button.
Τι είναι το Print the Thing;
Το Print the Thing είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://printathing.com, και η κύρια λειτουργία του είναι "Quickly and easily print 3D models from Thingiverse via Print a Thing with the click of a button.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Print the Thing
Λήψη αρχείων επέκτασης Print the Thing σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This unobtrusive extension simply adds a Print the Thing button right into the most common 3D marketplace website: Thingiverse. You can go from browsing to printing 3D models at printathing.com in just a click!
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | jlimbpmgnncifjajjbahffioianancbd |
Επίσημο URL | https://chrome.google.com/webstore/detail/print-the-thing/jlimbpmgnncifjajjbahffioianancbd |
Περιγραφή | Quickly and easily print 3D models from Thingiverse via Print a Thing with the click of a button. |
Μέγεθος Αρχείου | 26.4 KB |
Αριθμός Εγκαταστάσεων | 212 |
Τρέχουσα Έκδοση | 1.0.1.4 |
Τελευταία Ενημέρωση | 2020-05-27 |
Ημερομηνία Δημοσίευσης | 2020-05-27 |
Προγραμματιστής | http://printathing.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://printathing.com/print-the-thing/ |
Διεύθυνση URL της Σελίδας Βοήθειας | https://printathing.com/about/contact/ |
URL της Σελίδας Πολιτικής Απορρήτου | https://printathing.com/privacy.html |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Print the Thing", "short_name": "Print a Thing", "description": "Quickly and easily print 3D models from Thingiverse via Print a Thing with the click of a button.", "version": "1.0.1.4", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'", "content_scripts": [ { "matches": [ "https:\/\/www.thingiverse.com\/thing:*" ], "js": [ "thingiverse.js" ], "run_at": "document_end" } ], "externally_connectable": { "matches": [ "https:\/\/printathing.com\/*" ] }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "https:\/\/www.thingiverse.com\/" ] } |