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.」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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" ] } ] } |