Zebra Printing

Allows to print ZPL to a network connected Zebra printer.

As of June 2026, Zebra Printing has 10,000 users and a 4.33/5 rating from 6 reviews in the Workflow & Planning category.

Usersup 11.1 percent+11.1%
10.0K
10,000
Ratingno change0%
4.33
6 reviews
Reviewsno change0%
6
Version
1.9
Manifest V3
90-day change · In the last 90 days this extension gained 1.0K users.

History

3 snapshots

Tracking since Apr 20, 2026.

10.1K9.5K8.9KApr 20, 2026Jun 9, 2026
View as table
DateUsersRatingReviewsVersion
Apr 20, 20269.0K4.3361.9
May 5, 20269.0K4.3361.9
Jun 9, 20269.0K4.3361.9
Now10.0K4.3361.9

Permissions & access

Permissions
activeTabstorage
Host access
<all_urls>

Screenshots

Zebra Printing screenshot 1Zebra Printing screenshot 2

About

NOTE: This is an extension useful for developers who want to simply print ZPL labels directly from their web apps.

Most Zebra Printers have a HTTP POST endpoint through which ZPL can be directly printed without the need for an installed driver, print dialogs popping up or other locally installed software.

Unfortunately those printers don't set any CORS headers which makes it impossible to use this HTTP endpoint in modern browser-based apps.

This extension circumvents this issue.

In your web app you can now directly print to Zebra printers by using window.postMessage():

window.postMessage({
    type: "zebra_print_label",
    zpl: "^XA^PW400^LL200^FO20,20^A0N,30,30^FDThis is a TEST^FS^XZ",
    url: "http://192.168.37.36/pstprnt"
}, "*");

The Zebra Printing extension will listen to those messages and print the zpl to the url.

type: The extension will only pick up messages where the type is zebra_print_label
zpl: The ZPL string to be printed
url: The URL of the printer
The extension will also post a message to the web page upon loading. This way in your web app you can check if the extension is installed:

window.addEventListener("message", function (event) {
    if (!event.data.ZebraPrintingVersion) {
        return;
    }
    // extension installed, enable print button or whatever...
    console.log(event.data);
});

The event will contain two fields:

ZebraPrintingExtensionId: The extension ID (ndikjdigobmbieacjcgomahigeiobhbo)
ZebraPrintingVersion: The version number of the installed extension

A simple example can be found here:

https://danielnitz.github.io/zebra-printing-chrome-extension/web-app-example/index.html

Technical

Version
1.9
Manifest
V3
Size
220KiB
Min Chrome
88
Languages
1
Featured
No

Metadata

ID
ndikjdigobmbieacjcgomahigeiobhbo
Developer ID
u65d5eacdb515c49bfaa357f8c6b50d1a
Developer Email
[email protected]
Created
Jul 30, 2019
Last Updated (Store)
Sep 23, 2025
Last Scraped
Jun 9, 2026
Website
Privacy Policy

Similar extensions

Alternatives to Zebra Printing, ranked by description similarity.

Data sourced from the Chrome Web Store · last verified Jun 9, 2026.