SimplyPrint
Send files directly to SimplyPrint
SimplyPrint란 무엇입니까?
SimplyPrint은(는) simplyprint3d에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Send files directly to SimplyPrint"입니다.
확장 프로그램 스크린샷
SimplyPrint 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" } |