Ninja Printer
Westwing Printing solution
Qu'est-ce que Ninja Printer ?
Ninja Printer est une extension Chrome développée par westwing-chrome-extension-developers, et sa fonction principale est "Westwing Printing solution".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Ninja Printer
Téléchargez les fichiers d'extension Ninja Printer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Ninja Printer |
ID | fnacfbhdnejbjiglnlfgeaaifcmmmncb |
URL Officiel | https://chromewebstore.google.com/detail/ninja-printer/fnacfbhdnejbjiglnlfgeaaifcmmmncb |
Description | Westwing Printing solution |
Taille du Fichier | 11.12 KB |
Nombre d'Installations | 695 |
Version Actuelle | 1.0.8 |
Dernière Mise à Jour | 2024-02-13 |
Date de Publication | 2016-07-15 |
Évaluation | 3.00/5 Total 2 Évaluations |
Développeur | westwing-chrome-extension-developers |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/Westwing-Home-and-Living/Ninja-Printer |
URL de la Page d'Aide | https://github.com/Westwing-Home-and-Living/Ninja-Printer/issues |
Langues Prises en Charge | 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\/*" ] } |