Ninja Printer
Westwing Printing solution
什么是Ninja Printer?
Ninja Printer是由westwing-chrome-extension-developers开发的Chrome扩展程序,该扩展的主要功能是“Westwing Printing solution”。
扩展截图
下载Ninja Printer扩展crx文件
下载Ninja Printer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Ninja Printer |
ID | fnacfbhdnejbjiglnlfgeaaifcmmmncb |
官方URL | https://chromewebstore.google.com/detail/ninja-printer/fnacfbhdnejbjiglnlfgeaaifcmmmncb |
简介 | Westwing Printing solution |
文件大小 | 11.12 KB |
安装次数 | 695 |
当前版本 | 1.0.8 |
更新时间 | 2024-02-13 |
上架时间 | 2016-07-15 |
评分 | 3.00/5 共2次评分 |
开发者 | westwing-chrome-extension-developers |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/Westwing-Home-and-Living/Ninja-Printer |
帮助页面URL | https://github.com/Westwing-Home-and-Living/Ninja-Printer/issues |
支持的语言 | 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\/*" ] } |