Niceloop Printer Interface V2
NICELOOP PRINTER INTERFACE V2 Niceloop is a POS system in the Cloud which effectively helps small sized restaurants increase their…
Niceloop Printer Interface V2란 무엇입니까?
Niceloop Printer Interface V2은(는) rice.th에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "NICELOOP PRINTER INTERFACE V2 Niceloop is a POS system in the Cloud which effectively helps small sized restaurants increase their…"입니다.
확장 프로그램 스크린샷
Niceloop Printer Interface V2 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
NICELOOP PRINTER INTERFACE V2 Niceloop is a POS system in the Cloud which effectively helps small sized restaurants increase their daily workflow management, with budget friendly prices. This extension is used with web application "app.niceloop.com" in order to send json data to local printer server service. Any customer of Niceloop POS must install this extension in order to print the receipts. Features : - send data to background service - print receipts from printer servers
확장 프로그램 기본 정보
이름 | Niceloop Printer Interface V2 |
ID | dkfjhpogadnklepegphcokdfmpfdemeo |
공식 URL | https://chromewebstore.google.com/detail/niceloop-printer-interfac/dkfjhpogadnklepegphcokdfmpfdemeo |
설명 | NICELOOP PRINTER INTERFACE V2 Niceloop is a POS system in the Cloud which effectively helps small sized restaurants increase their… |
파일 크기 | 18.8 KB |
설치 횟수 | 803 |
현재 버전 | 2.0 |
최근 업데이트 | 2022-07-12 |
출시 날짜 | 2022-07-11 |
개발자 | rice.th |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.niceloop.com |
지원되는 언어 | th |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Niceloop Printer Interface V2", "version": "2.0", "manifest_version": 3, "background": { "service_worker": "background.js", "type": "module" }, "action": { "default_title": "Niceloop Printer Interface V2", "default_popup": "hello.html" }, "permissions": [ "background" ], "icons": { "16": "print-icon.png", "32": "print-icon.png", "48": "print-icon.png", "128": "print-icon.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content_script.js" ] } ] } |