Ninja Printer

Westwing Printing solution

什麼是Ninja Printer?

Ninja Printer是由westwing-chrome-extension-developers開發的Chrome擴展程式,該擴展的主要功能是“Westwing Printing solution”。

擴展截圖

screenshot

下載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 Ninja Printer
ID fnacfbhdnejbjiglnlfgeaaifcmmmncb
官方網址 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\/*"
    ]
}