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.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Traxia Print Plugin
قم بتنزيل ملفات الامتداد Traxia Print Plugin بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
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\/" ] } |