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是由https://traxia.com開發的Chrome擴展程式,該擴展的主要功能是“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擴展crx文件
下載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 |
ID | oahefobeogppebdmhlijlagpainfokfh |
官方網址 | 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\/" ] } |