PracticeSync Payment Extension

A payment integration extension for sending payments to card reader terminals.

PracticeSync Payment Extension란 무엇입니까?

PracticeSync Payment Extension은(는) ACT Data에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A payment integration extension for sending payments to card reader terminals."입니다.

확장 프로그램 스크린샷

screenshot

PracticeSync Payment Extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension allows users who have integrated with AnimalCareTechnologies to accept terminal purchases using their web based practice management system. The extension currently support EzyVet, EVetPractice, NaVetor, Vetport, Idexx Neo, and Vetter integration with more practice management systems coming soon!                    

확장 프로그램 기본 정보

이름 PracticeSync Payment Extension PracticeSync Payment Extension
ID bbmpakhbjgpogjnmcbajcchdokmflpmg
공식 URL https://chromewebstore.google.com/detail/practicesync-payment-exte/bbmpakhbjgpogjnmcbajcchdokmflpmg
설명 A payment integration extension for sending payments to card reader terminals.
파일 크기 153 KB
설치 횟수 1,523
현재 버전 2.0.5
최근 업데이트 2024-01-24
출시 날짜 2022-01-12
개발자 ACT Data
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PracticeSync Payment Extension",
    "description": "A payment integration extension for sending payments to card reader terminals.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "version": "2.0.5",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "activeTab",
        "scripting"
    ],
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.ezyvet.com\/*"
            ],
            "all_frames": true,
            "js": [
                "jquery-3.6.0.min.js",
                "jquery-ui.min.js",
                "shared\/sharedPaymentFunctions.js",
                "pims\/ezyVet\/ezyvet.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.evetpractice.com\/*"
            ],
            "all_frames": true,
            "js": [
                "jquery-3.6.0.min.js",
                "jquery-ui.min.js",
                "shared\/sharedPaymentFunctions.js",
                "pims\/eVetPractice\/eVetPractice.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.vetport.com\/*"
            ],
            "all_frames": true,
            "js": [
                "jquery-3.6.0.min.js",
                "jquery-ui.min.js",
                "shared\/sharedPaymentFunctions.js",
                "pims\/vetport\/vetport.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.vettersoftware.com\/*"
            ],
            "all_frames": true,
            "js": [
                "jquery-3.6.0.min.js",
                "jquery-ui.min.js",
                "shared\/sharedPaymentFunctions.js",
                "pims\/vetter\/vetter.js"
            ],
            "css": [
                "jquery-ui.min.css"
            ]
        },
        {
            "matches": [
                "https:\/\/*.navetor.com\/*"
            ],
            "all_frames": true,
            "js": [
                "jquery-3.6.0.min.js",
                "jquery-ui.min.js",
                "shared\/sharedPaymentFunctions.js",
                "pims\/naVetor\/naVetor.js"
            ],
            "css": [
                "jquery-ui.min.css"
            ]
        },
        {
            "matches": [
                "https:\/\/*.idexxneo.com\/*"
            ],
            "all_frames": true,
            "js": [
                "jquery-3.6.0.min.js",
                "jquery-ui.min.js",
                "shared\/sharedPaymentFunctions.js",
                "pims\/neo\/neo.js"
            ],
            "css": [
                "jquery-ui.min.css"
            ]
        }
    ]
}