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 |
公式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 |
Eメール | [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\/" ] } |