SimplyPrint
Send files directly to SimplyPrint
SimplyPrint क्या है?
SimplyPrint simplyprint3d द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Send files directly to SimplyPrint"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में SimplyPrint एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } |