PayPal Recurring Payment, Subscription Export

PayPal Recurring Payment, Subscription Export

Exports all PayPal Recurring Payments / Subscriptions as CSV

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "PayPal Recurring Payment, Subscription Export",
  "description": "Exports all PayPal Recurring Payments / Subscriptions as CSV",
  "version": "0.2",
  "author": "Richard Kerber",
  "content_scripts": [
    {
      "matches": [
        "https://*.paypal.com/billing/*"
      ],
      "js": [
        "content-script.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ]
}