Niceloop Printer Interface V2

Niceloop Printer Interface V2

NICELOOP PRINTER INTERFACE V2 Niceloop is a POS system in the Cloud which effectively helps small sized restaurants increase their…

Merlin
Additional files are visible only to premium users

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"
      ]
    }
  ]
}