Ninja Printer
Westwing Printing solution
Cos'è Ninja Printer?
Ninja Printer è un'estensione di Chrome sviluppata da westwing-chrome-extension-developers, e la sua funzione principale è "Westwing Printing solution".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Ninja Printer
Scarica i file di estensione Ninja Printer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Ninja Printer |
ID | fnacfbhdnejbjiglnlfgeaaifcmmmncb |
URL Ufficiale | https://chromewebstore.google.com/detail/ninja-printer/fnacfbhdnejbjiglnlfgeaaifcmmmncb |
Descrizione | Westwing Printing solution |
Dimensione del File | 11.12 KB |
Conteggio Installazioni | 695 |
Versione Corrente | 1.0.8 |
Ultimo Aggiornamento | 2024-02-13 |
Data di Pubblicazione | 2016-07-15 |
Valutazione | 3.00/5 Totale 2 Valutazioni |
Sviluppatore | westwing-chrome-extension-developers |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/Westwing-Home-and-Living/Ninja-Printer |
URL della Pagina di Aiuto | https://github.com/Westwing-Home-and-Living/Ninja-Printer/issues |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Ninja Printer", "version": "1.0.8", "manifest_version": 2, "description": "Westwing Printing solution", "background": { "scripts": [ "main.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "*:\/\/*.west-wing.ws\/*", "*:\/\/*.westwing.es\/*", "*:\/\/*.westwing.fr\/*", "*:\/\/*.westwing.pl\/*", "*:\/\/*.westwing.de\/*", "*:\/\/*.westwing.eu\/*", "*:\/\/*.westwingnow.es\/*", "*:\/\/*.westwingnow.fr\/*", "*:\/\/*.westwingnow.pl\/*", "*:\/\/*.westwingnow.de\/*", "*:\/\/*.westwingnow.eu\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "NinjaPrinter.js" ], "icons": { "128": "ninja-128.png" }, "permissions": [ "nativeMessaging", "*:\/\/*.west-wing.ws\/*", "*:\/\/*.westwing.es\/*", "*:\/\/*.westwing.fr\/*", "*:\/\/*.westwing.pl\/*", "*:\/\/*.westwing.de\/*", "*:\/\/*.westwing.eu\/*", "*:\/\/*.westwingnow.es\/*", "*:\/\/*.westwingnow.fr\/*", "*:\/\/*.westwingnow.pl\/*", "*:\/\/*.westwingnow.de\/*", "*:\/\/*.westwingnow.eu\/*" ] } |