SimplyPrint
Send files directly to SimplyPrint
Was ist SimplyPrint?
SimplyPrint ist eine Chrome-Erweiterung, die von simplyprint3d entwickelt wurde, und ihr Hauptmerkmal ist "Send files directly to SimplyPrint".
Erweiterungsscreenshots
SimplyPrint-Erweiterungs-CRX-Datei herunterladen
Laden Sie SimplyPrint-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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)
Grundlegende Informationen zur Erweiterung
Name | SimplyPrint |
ID | ajimllenbipapigpfnncfenedhenkpfb |
Offizielle URL | https://chromewebstore.google.com/detail/simplyprint/ajimllenbipapigpfnncfenedhenkpfb |
Beschreibung | Send files directly to SimplyPrint |
Dateigröße | 105 KB |
Installationsanzahl | 280 |
Aktuelle Version | 1.3 |
Letztes Update | 2023-10-06 |
Veröffentlichungsdatum | 2023-08-14 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | simplyprint3d |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://simplyprint.io/ |
Hilfeseite URL | https://simplyprint.io/contact |
Unterstützte Sprachen | 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" } |