Niceloop Printer Interface V2
NICELOOP PRINTER INTERFACE V2 Niceloop is a POS system in the Cloud which effectively helps small sized restaurants increase their…
¿Qué es Niceloop Printer Interface V2?
Niceloop Printer Interface V2 es una extensión de Chrome desarrollada por rice.th, y su función principal es "NICELOOP PRINTER INTERFACE V2 Niceloop is a POS system in the Cloud which effectively helps small sized restaurants increase their…".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Niceloop Printer Interface V2
Descarga archivos de extensión Niceloop Printer Interface V2 en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | Niceloop Printer Interface V2 |
ID | dkfjhpogadnklepegphcokdfmpfdemeo |
URL Oficial | https://chromewebstore.google.com/detail/niceloop-printer-interfac/dkfjhpogadnklepegphcokdfmpfdemeo |
Descripción | NICELOOP PRINTER INTERFACE V2 Niceloop is a POS system in the Cloud which effectively helps small sized restaurants increase their… |
Tamaño del Archivo | 18.8 KB |
Cantidad de Instalaciones | 803 |
Versión Actual | 2.0 |
Última Actualización | 2022-07-12 |
Fecha de Publicación | 2022-07-11 |
Desarrollador | rice.th |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://www.niceloop.com |
Idiomas Soportados | 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" ] } ] } |