PayPal Recurring Payment, Subscription Export

Exports all PayPal Recurring Payments / Subscriptions as CSV

O que é PayPal Recurring Payment, Subscription Export?

PayPal Recurring Payment, Subscription Export é uma extensão do Chrome desenvolvida por www.kleinanzeigen-enhanced.de, e sua principal característica é "Exports all PayPal Recurring Payments / Subscriptions as CSV".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão PayPal Recurring Payment, Subscription Export

Baixe arquivos de extensão PayPal Recurring Payment, Subscription Export no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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!                    

Informações Básicas da Extensão

Nome PayPal Recurring Payment, Subscription Export PayPal Recurring Payment, Subscription Export
ID jlkmgflbilbhfciigmjbgiohkhiilmfn
URL Oficial https://chromewebstore.google.com/detail/paypal-recurring-payment/jlkmgflbilbhfciigmjbgiohkhiilmfn
Descrição Exports all PayPal Recurring Payments / Subscriptions as CSV
Tamanho do Arquivo 5.7 KB
Contagem de Instalações 53
Versão Atual 0.2
Última Atualização 2023-12-21
Data de Publicação 2023-02-22
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor www.kleinanzeigen-enhanced.de
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://kleinanzeigen-enhanced.de/datenschutz
Idiomas Suportados 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"
            ]
        }
    ]
}