PayPal Recurring Payment, Subscription Export

Exports all PayPal Recurring Payments / Subscriptions as CSV

Qu'est-ce que PayPal Recurring Payment, Subscription Export ?

PayPal Recurring Payment, Subscription Export est une extension Chrome développée par www.kleinanzeigen-enhanced.de, et sa fonction principale est "Exports all PayPal Recurring Payments / Subscriptions as CSV".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension PayPal Recurring Payment, Subscription Export

Téléchargez les fichiers d'extension PayPal Recurring Payment, Subscription Export au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom PayPal Recurring Payment, Subscription Export PayPal Recurring Payment, Subscription Export
ID jlkmgflbilbhfciigmjbgiohkhiilmfn
URL Officiel https://chromewebstore.google.com/detail/paypal-recurring-payment/jlkmgflbilbhfciigmjbgiohkhiilmfn
Description Exports all PayPal Recurring Payments / Subscriptions as CSV
Taille du Fichier 5.7 KB
Nombre d'Installations 53
Version Actuelle 0.2
Dernière Mise à Jour 2023-12-21
Date de Publication 2023-02-22
Évaluation 5.00/5 Total 2 Évaluations
Développeur www.kleinanzeigen-enhanced.de
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://kleinanzeigen-enhanced.de/datenschutz
Langues Prises en Charge 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"
            ]
        }
    ]
}