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 là gì?

Traxia Print Plugin là một tiện ích mở rộng Chrome được phát triển bởi https://traxia.com, và tính năng chính của nó là "This extension will communicate with the printing client on your machine so you can print. It also keeps track of your printers.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Traxia Print Plugin

Tải xuống các tệp mở rộng Traxia Print Plugin dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Traxia Print Plugin Traxia Print Plugin
ID oahefobeogppebdmhlijlagpainfokfh
URL Chính Thức https://chromewebstore.google.com/detail/traxia-print-plugin/oahefobeogppebdmhlijlagpainfokfh
Mô tả This extension will communicate with the printing client on your machine so you can print. It also keeps track of your printers.
Kích Thước Tệp 29.03 KB
Số Lần Cài Đặt 601
Phiên Bản Hiện Tại 1.0.6
Cập Nhật Lần Cuối 2018-01-26
Ngày Phát Hành 2018-01-26
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://traxia.com
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/"
    ]
}