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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}