Print the Thing
Quickly and easily print 3D models from Thingiverse via Print a Thing with the click of a button.
Qu'est-ce que Print the Thing ?
Print the Thing est une extension Chrome développée par http://printathing.com, et sa fonction principale est "Quickly and easily print 3D models from Thingiverse via Print a Thing with the click of a button.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Print the Thing
Téléchargez les fichiers d'extension Print the Thing au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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!
Informations de Base sur l'Extension
Nom | |
ID | jlimbpmgnncifjajjbahffioianancbd |
URL Officiel | https://chrome.google.com/webstore/detail/print-the-thing/jlimbpmgnncifjajjbahffioianancbd |
Description | Quickly and easily print 3D models from Thingiverse via Print a Thing with the click of a button. |
Taille du Fichier | 26.4 KB |
Nombre d'Installations | 212 |
Version Actuelle | 1.0.1.4 |
Dernière Mise à Jour | 2020-05-27 |
Date de Publication | 2020-05-27 |
Développeur | http://printathing.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://printathing.com/print-the-thing/ |
URL de la Page d'Aide | https://printathing.com/about/contact/ |
URL de la Page de Politique de Confidentialité | https://printathing.com/privacy.html |
Langues Prises en Charge | 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\/" ] } |