PayPal Recurring Payment, Subscription Export

Exports all PayPal Recurring Payments / Subscriptions as CSV

Was ist PayPal Recurring Payment, Subscription Export?

PayPal Recurring Payment, Subscription Export ist eine Chrome-Erweiterung, die von www.kleinanzeigen-enhanced.de entwickelt wurde, und ihr Hauptmerkmal ist "Exports all PayPal Recurring Payments / Subscriptions as CSV".

Erweiterungsscreenshots

screenshot
screenshot

PayPal Recurring Payment, Subscription Export-Erweiterungs-CRX-Datei herunterladen

Laden Sie PayPal Recurring Payment, Subscription Export-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        It is not currently possible to export all recurring payments /subscriptions from PayPal.
With this chrome extension, you can download ALL recurring payments.

Example Use Cases:
- For analysis
- calculate monthly income

How to:
1. Install extension
2. open paypal.com
3. login
4. open recurring payments (german: Abonnements): https://www.paypal.com/billing/overview
5. you will see now a pink button with the text "Export All Recurring Payments as CSV"
6. click on it and wait until you see a promt window to download the CSV-File

For the moment, the CSV-File will have the following headers:
- status
- id
- plan_id
- create_time
- email_address
- plan_name
- product_name
- start_time
- update_time
- address
- gross_amount
- interval_unit
- interval_count

Use at your own risk! Its not supported nor payed by PayPal!                    

Grundlegende Informationen zur Erweiterung

Name PayPal Recurring Payment, Subscription Export PayPal Recurring Payment, Subscription Export
ID jlkmgflbilbhfciigmjbgiohkhiilmfn
Offizielle URL https://chromewebstore.google.com/detail/paypal-recurring-payment/jlkmgflbilbhfciigmjbgiohkhiilmfn
Beschreibung Exports all PayPal Recurring Payments / Subscriptions as CSV
Dateigröße 5.7 KB
Installationsanzahl 53
Aktuelle Version 0.2
Letztes Update 2023-12-21
Veröffentlichungsdatum 2023-02-22
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler www.kleinanzeigen-enhanced.de
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://kleinanzeigen-enhanced.de/datenschutz
Unterstützte Sprachen en
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"
            ]
        }
    ]
}