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.”。

扩展截图

screenshot

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