PracticeSync Payment Extension
A payment integration extension for sending payments to card reader terminals.
Hvad er PracticeSync Payment Extension?
PracticeSync Payment Extension er en Chrome-udvidelse udviklet af ACT Data, og dens hovedfunktion er "A payment integration extension for sending payments to card reader terminals.".
Udvidelsesskærmbilleder
Download PracticeSync Payment Extension-udvidelses-CRX-fil
Download PracticeSync Payment Extension-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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!
Grundlæggende oplysninger om udvidelsen
Navn | PracticeSync Payment Extension |
ID | bbmpakhbjgpogjnmcbajcchdokmflpmg |
Officiel URL | https://chromewebstore.google.com/detail/practicesync-payment-exte/bbmpakhbjgpogjnmcbajcchdokmflpmg |
Beskrivelse | A payment integration extension for sending payments to card reader terminals. |
Filstørrelse | 153 KB |
Antal Installationer | 1,523 |
Nuværende Version | 2.0.5 |
Senest Opdateret | 2024-01-24 |
Udgivelsesdato | 2022-01-12 |
Udvikler | ACT Data |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } ] } |