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.
Vad är Traxia Print Plugin?
Traxia Print Plugin är en Chrome-tillägg utvecklad av https://traxia.com, och dess huvudfunktion är "This extension will communicate with the printing client on your machine so you can print. It also keeps track of your printers.".
Tilläggsskärmbilder
Ladda ner Traxia Print Plugin-förlängningens CRX-fil
Ladda ner Traxia Print Plugin-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Traxia Print Plugin |
ID | oahefobeogppebdmhlijlagpainfokfh |
Officiell webbadress | https://chromewebstore.google.com/detail/traxia-print-plugin/oahefobeogppebdmhlijlagpainfokfh |
Beskrivning | This extension will communicate with the printing client on your machine so you can print. It also keeps track of your printers. |
Filstorlek | 29.03 KB |
Antal Installationer | 601 |
Aktuell Version | 1.0.6 |
Senast Uppdaterad | 2018-01-26 |
Publiceringsdatum | 2018-01-26 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | https://traxia.com |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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\/" ] } |