Scratchpay Payments

Scratchpay Payments

Scratch Payments is an extension that allows current Scratch veterinary partners to securely accept card payments through their…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Scratchpay Payments",
  "version": "1.61.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"
  }
}