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\/"
    ]
}