Acuity Scheduling Payment Link Fix

Acuity Scheduling Payment Link Fix

Disables the 'Make payment' link in the Appointments window for future appointment dates.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Acuity Scheduling Payment Link Fix",
  "version": "1.0",
  "description": "Disables the 'Make payment' link in the Appointments window for future appointment dates.",
  "permissions": [],
  "manifest_version": 2,
  "icons": {
    "128": "src/icon.png"
  },
  "browser_action": {
    "default_icon": {
      "128": "src/icon.png"
    }
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "./src/polyfill.js",
        "./src/content.js"
      ],
      "matches": [
        "https://secure.acuityscheduling.com/appointments.php*",
        "https://www.acuityscheduling.com/appointments.php*",
        "https://acuityscheduling.com/appointments.php*"
      ],
      "run_at": "document_start"
    }
  ]
}