Ninja Printer

Westwing Printing solution

ما هو Ninja Printer؟

Ninja Printer هو إضافة Chrome تم تطويرها بواسطة westwing-chrome-extension-developers، والميزة الرئيسية لها هي "Westwing Printing solution".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Ninja Printer

قم بتنزيل ملفات الامتداد Ninja Printer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/Westwing-Home-and-Living/Ninja-Printer
عنوان صفحة المساعدة 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\/*"
    ]
}