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
公式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
Eメール [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\/*"
    ]
}