Scratchpay Payments
Scratch Payments is an extension that allows current Scratch veterinary partners to securely accept card payments through their…
Τι είναι το Scratchpay Payments;
Το Scratchpay Payments είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Scratch Pay, και η κύρια λειτουργία του είναι "Scratch Payments is an extension that allows current Scratch veterinary partners to securely accept card payments through their…".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Scratchpay Payments
Λήψη αρχείων επέκτασης Scratchpay Payments σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Scratch Payments is an extension that allows current Scratch veterinary partners to securely accept card payments through their wireless card readers on the Scratch Pay platform. Simply tap, dip or swipe to collect payment without ever leaving the page you are working on.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Scratchpay Payments |
ID | oljahnbfdpmlaimhoklknhbcpaiailkk |
Επίσημο URL | https://chromewebstore.google.com/detail/scratchpay-payments/oljahnbfdpmlaimhoklknhbcpaiailkk |
Περιγραφή | Scratch Payments is an extension that allows current Scratch veterinary partners to securely accept card payments through their… |
Μέγεθος Αρχείου | 1.3 MB |
Αριθμός Εγκαταστάσεων | 1,964 |
Τρέχουσα Έκδοση | 1.52.0 |
Τελευταία Ενημέρωση | 2024-02-28 |
Ημερομηνία Δημοσίευσης | 2021-11-17 |
Αξιολόγηση | 5.00/5 Συνολικά 3 Αξιολογήσεις |
Προγραμματιστής | Scratch Pay |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://scratchpay.com/ |
URL της Σελίδας Πολιτικής Απορρήτου | https://scratchpay.com/legal/privacy-providers |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Scratchpay Payments", "version": "1.52.0", "manifest_version": 3, "permissions": [ "storage", "notifications", "gcm", "windows", "activeTab", "alarms", "clipboardWrite" ], "content_scripts": [ { "matches": [ "https:\/\/*.ezyvet.com\/*", "https:\/\/*.vettersoftware.com\/*", "https:\/\/*.denticon.com\/*", "https:\/\/*.smilebrands.com\/*", "https:\/\/*.evetpractice.com\/*", "https:\/\/*.dentrixascend.com\/*", "https:\/\/*.instinctvet.cloud\/*", "https:\/\/*.rhapsody.vet\/*" ], "js": [ "main.js" ], "all_frames": true } ], "icons": { "16": "assets\/images\/logo16.png", "48": "assets\/images\/logo48.png", "128": "assets\/images\/logo128.png" }, "background": { "service_worker": "background.js" }, "action": { "default_title": "Scratchpay", "default_icon": "assets\/images\/logo128.png", "default_popup": "login.html" } } |