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.

Τι είναι το Traxia Print Plugin;

Το Traxia Print Plugin είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://traxia.com, και η κύρια λειτουργία του είναι "This extension will communicate with the printing client on your machine so you can print. It also keeps track of your printers.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Traxia Print Plugin

Λήψη αρχείων επέκτασης Traxia Print Plugin σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Traxia Print Plugin Traxia Print Plugin
ID oahefobeogppebdmhlijlagpainfokfh
Επίσημο URL https://chromewebstore.google.com/detail/traxia-print-plugin/oahefobeogppebdmhlijlagpainfokfh
Περιγραφή This extension will communicate with the printing client on your machine so you can print. It also keeps track of your printers.
Μέγεθος Αρχείου 29.03 KB
Αριθμός Εγκαταστάσεων 601
Τρέχουσα Έκδοση 1.0.6
Τελευταία Ενημέρωση 2018-01-26
Ημερομηνία Δημοσίευσης 2018-01-26
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής https://traxia.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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\/"
    ]
}