Traxia Print Plugin

This extension will communicate with the printing client on your machine so you can print. It also keeps track of your printers.

Co je Traxia Print Plugin?

Traxia Print Plugin je rozšíření Chrome vyvinuté https://traxia.com, a jeho hlavní funkcí je „This extension will communicate with the printing client on your machine so you can print. It also keeps track of your printers.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Traxia Print Plugin

Stáhněte si soubory rozšíření Traxia Print Plugin ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        This printing extension is Intended for use only with Traxia's SimpleConsign Point of Sale service.  The extension gives SimpleConsign users the ability to print labels and receipts from their Chrome web browser. You must be running the SimpleConsign web client for this extension to work. The extension is provided free of charge to Traxia users needing these features.                    

Základní Informace o Rozšíření

Název Traxia Print Plugin Traxia Print Plugin
ID oahefobeogppebdmhlijlagpainfokfh
Oficiální URL https://chromewebstore.google.com/detail/traxia-print-plugin/oahefobeogppebdmhlijlagpainfokfh
Popis This extension will communicate with the printing client on your machine so you can print. It also keeps track of your printers.
Velikost souboru 29.03 KB
Počet instalací 601
Aktuální Verze 1.0.6
Poslední Aktualizace 2018-01-26
Datum Vydání 2018-01-26
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář https://traxia.com
E-mail [email protected]
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Traxia Print Plugin",
    "short_name": "Traxia Print",
    "description": "This extension will communicate with the printing client on your machine so you can print.  It also keeps track of your printers.",
    "version": "1.0.6",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/localhost\/*",
                "https:\/\/test.traxia.com\/*",
                "https:\/\/user.traxia.com\/*"
            ],
            "js": [
                "converter.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "icon.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "page_action": {
        "default_name": "Traxia Printing",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "nativeMessaging",
        "https:\/\/*.traxia.com\/"
    ]
}