Ninja Printer

Westwing Printing solution

Ninja Printer क्या है?

Ninja Printer westwing-chrome-extension-developers द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Westwing Printing solution"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Ninja Printer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
सहायता पृष्ठ 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\/*"
    ]
}