foreUP Printer Extension

App to print to star printers within the foreUP POS.

什么是foreUP Printer Extension?

foreUP Printer Extension是由https://foreupsoftware.com开发的Chrome扩展程序,该扩展的主要功能是“App to print to star printers within the foreUP POS.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载foreUP Printer Extension扩展crx文件

下载foreUP Printer Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Printer extension to print at foreUP                    

扩展基本信息

名称 foreUP Printer Extension foreUP Printer Extension
ID ndcdpiikdnlagfjejimgpmaflngcemoo
官方URL https://chromewebstore.google.com/detail/foreup-printer-extension/ndcdpiikdnlagfjejimgpmaflngcemoo
简介 App to print to star printers within the foreUP POS.
文件大小 125 KB
安装次数 10,217
当前版本 2.0.5
更新时间 2021-02-10
上架时间 2020-02-04
评分 4.84/5 共25次评分
开发者 https://foreupsoftware.com
电子邮箱 [email protected]
付费类型 free
扩展官网 http://www.foreupgolf.com/
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "foreUP Printer Extension",
    "description": "App to print to star printers within the foreUP POS.",
    "version": "2.0.5",
    "manifest_version": 2,
    "externally_connectable": {
        "matches": [
            "*:\/\/*.foreupsoftware.com\/*",
            "http:\/\/localhost\/*"
        ]
    },
    "icons": {
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "browser_action": {
        "default_title": "foreUP Printer Extension",
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/localhost\/*",
                "*:\/\/*.foreupsoftware.com\/*",
                "*:\/\/foreupsoftware.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}