ZPL label Printer

This extension help Dropship vendors print ZPL label without ZPL printer, by implementing a ZPL interpreter

What is ZPL label Printer?

ZPL label Printer is a Chrome extension developed by kingweiliu, and its main feature is "This extension help Dropship vendors print ZPL label without ZPL printer, by implementing a ZPL interpreter".

Extension Screenshots

screenshot

Download ZPL label Printer Extension CRX File

Download ZPL label Printer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This tool implemented a ZPL interpreter and it is able to print ZPL label with regular printer, so that Dropship vendors can print label directly. Otherwise vendor must buy a Zebra Printer, which will cost them about $500 at least.                    

Extension Basic Information

Name ZPL label Printer ZPL label Printer
ID efhbbjhagclaahgimilkpilhdleclfac
Official URL https://chromewebstore.google.com/detail/zpl-label-printer/efhbbjhagclaahgimilkpilhdleclfac
Description This extension help Dropship vendors print ZPL label without ZPL printer, by implementing a ZPL interpreter
File Size 456 KB
Installation Count 3,000
Current Version 0.2.0
Last Updated 2021-12-30
Publish Date 2021-12-05
Rating 2.33/5 Total 3 Ratings
Developer kingweiliu
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ZPL label Printer",
    "version": "0.2.0",
    "icons": {
        "128": "zplprint.png"
    },
    "description": "This extension help Dropship vendors print ZPL label without ZPL printer, by implementing a ZPL interpreter",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/vendorcentral.amazon.com.tr\/hz\/vendor\/members\/df\/orders*",
                "https:\/\/vendorcentral.amazon.com.au\/hz\/vendor\/members\/df\/orders*"
            ],
            "js": [
                "jquery-3.6.0.js",
                "code128.js",
                "bwip-js.js",
                "zpl.js",
                "common.js",
                "content-script.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html"
    }
}