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文件

下載PracticeSync Payment Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
            ]
        }
    ]
}