PracticeSync Payment Extension
A payment integration extension for sending payments to card reader terminals.
PracticeSync Payment Extension là gì?
PracticeSync Payment Extension là một tiện ích mở rộng Chrome được phát triển bởi ACT Data, và tính năng chính của nó là "A payment integration extension for sending payments to card reader terminals.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng PracticeSync Payment Extension
Tải xuống các tệp mở rộng PracticeSync Payment Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | PracticeSync Payment Extension |
ID | bbmpakhbjgpogjnmcbajcchdokmflpmg |
URL Chính Thức | https://chromewebstore.google.com/detail/practicesync-payment-exte/bbmpakhbjgpogjnmcbajcchdokmflpmg |
Mô tả | A payment integration extension for sending payments to card reader terminals. |
Kích Thước Tệp | 153 KB |
Số Lần Cài Đặt | 1,523 |
Phiên Bản Hiện Tại | 2.0.5 |
Cập Nhật Lần Cuối | 2024-01-24 |
Ngày Phát Hành | 2022-01-12 |
Nhà Phát Triển | ACT Data |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |