Zebra Printing

Zebra Printing

Allows to print ZPL to a network connected Zebra printer.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Zebra Printing",
  "version": "1.2",
  "description": "Allows to print ZPL to a network connected Zebra printer.",
  "icons": {
    "128": "zebra128.png"
  },
  "author": "Daniel Nitz",
  "permissions": [
    "<all_urls>",
    "background",
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {},
  "offline_enabled": true
}