ZPL printer / JS provider

ZPL printer / JS provider

Allow to send / print ZPL format commands to network .ZPL printer

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ZPL printer / JS provider",
  "description": "Allow to send / print ZPL format commands to network .ZPL printer",
  "version": "1.1.1",
  "icons": {
    "128": "128.png"
  },
  "manifest_version": 3,
  "author": "Alexander Neverovsky",
  "homepage_url": "https://github.com/neverovsky/zpl-printer",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "offline_enabled": true
}