ndikjdigobmbieacjcgomahigeiobhbo
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. This extension circumvents this issue. In your web app you can now directly print to Zebra printers by using window.postMessage(): 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 https://danielnitz.github.io/zebra-printing-chrome-extension/web-app-example/index.html
ZPL to PDF - Zebra Label Converter
Convert ZPL to PDF instantly. Preview Zebra labels and download print-ready PDFs. Perfect for e-commerce shipping. Convert ZPL to PDF instantly. Preview Zebra labels and download print-ready PDFs. Perfect for e-commerce shipping.
AZLabels - Thermal Labels For Amazon
AZLabels allows you to print thermal labels straight to your thermal printer from Seller Central. Tired of downloading PDFs, snapshotting the same section over and over, or using ancient software that takes forever? Print in one click. Set your preferred label size once and never worry about getting the right size again. Download the simple Chrome extension and you'll be printing labels in under two minutes. Need help with anything? Our team is available to support with any problems you might have.
Ninja Remote Printer
This extension allows direct printing, useful for warehouse applications This extension allows automatic printing of documents, including PDF and ZPL, this is useful for business and warehouse applications, which requires printing without prompting confirmation, the printer must be pre-configured in your business application. This is done by sending a message through "nativeMessaging" which bridges the connection between the browser and your printer. To use it, you need to install on your computer the application that listens to the "nativeMessaging" event, this is not included in this extension, it must be downloaded and installed separately: In addition, your business application must send through javascript to which printer and in which format it will be printed, the document must be encoded in base64, either ZPL or PDF, I include a link to an example:
Ninja Printer
Ninja Printer is a browser based solution for printing from authorised website(s) using Google Chrome. Technically the solution is based on the NativeMessaging feature of the browser and runs a simple Java application in the background to execute printing on the local machine. Currently it only supports Windows and OSX, but it should be easy to adjust other unix-like systems. One of the main design goals was to be able to pick the printer to be used from the web application, meaning obviously that the application needs to be aware of the available printers on the users machine. NinjaPrinter ships with support for 2 different type of documents: ZPL (label) and the PDF, but extending it should be fairly straight forward.