SimplyPrint
Send files directly to SimplyPrint
Cos'è SimplyPrint?
SimplyPrint è un'estensione di Chrome sviluppata da simplyprint3d, e la sua funzione principale è "Send files directly to SimplyPrint".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione SimplyPrint
Scarica i file di estensione SimplyPrint in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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) Informazioni di Base sull'Estensione
| Nome | |
| ID | ajimllenbipapigpfnncfenedhenkpfb |
| URL Ufficiale | https://chromewebstore.google.com/detail/simplyprint/ajimllenbipapigpfnncfenedhenkpfb |
| Descrizione | Send files directly to SimplyPrint |
| Dimensione del File | 105 KB |
| Conteggio Installazioni | 280 |
| Versione Corrente | 1.3 |
| Ultimo Aggiornamento | 2023-10-06 |
| Data di Pubblicazione | 2023-08-14 |
| Valutazione | 5.00/5 Totale 2 Valutazioni |
| Sviluppatore | simplyprint3d |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://simplyprint.io/ |
| URL della Pagina di Aiuto | https://simplyprint.io/contact |
| Lingue Supportate | 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"
} | |