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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rice.th และคุณลักษณะหลักของมันคือ "NICELOOP PRINTER INTERFACE V2 Niceloop is a POS system in the Cloud which effectively helps small sized restaurants increase their…"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Niceloop Printer Interface V2
ดาวน์โหลดไฟล์ส่วนขยาย Niceloop Printer Interface V2 ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" ] } ] } |