ZPL label Printer
This extension help Dropship vendors print ZPL label without ZPL printer, by implementing a ZPL interpreter
Co to jest ZPL label Printer?
ZPL label Printer to rozszerzenie Chrome opracowane przez kingweiliu, a jego główną funkcją jest „This extension help Dropship vendors print ZPL label without ZPL printer, by implementing a ZPL interpreter”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia ZPL label Printer
Pobierz pliki rozszerzeń ZPL label Printer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | efhbbjhagclaahgimilkpilhdleclfac |
| Oficjalny URL | https://chromewebstore.google.com/detail/zpl-label-printer/efhbbjhagclaahgimilkpilhdleclfac |
| Opis | This extension help Dropship vendors print ZPL label without ZPL printer, by implementing a ZPL interpreter |
| Rozmiar pliku | 456 KB |
| Liczba instalacji | 3,000 |
| Aktualna Wersja | 0.2.0 |
| Ostatnia Aktualizacja | 2021-12-30 |
| Data Publikacji | 2021-12-05 |
| Ocena | 2.33/5 Łącznie 3 Oceny |
| Deweloper | kingweiliu |
| [email protected] | |
| Typ Płatności | free |
| Obsługiwane Języki | 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"
}
} | |