PayPal Recurring Payment, Subscription Export

Exports all PayPal Recurring Payments / Subscriptions as CSV

什麼是PayPal Recurring Payment, Subscription Export?

PayPal Recurring Payment, Subscription Export是由www.kleinanzeigen-enhanced.de開發的Chrome擴展程式,該擴展的主要功能是“Exports all PayPal Recurring Payments / Subscriptions as CSV”。

擴展截圖

screenshot
screenshot

下載PayPal Recurring Payment, Subscription Export擴展crx文件

下載PayPal Recurring Payment, Subscription Export擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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!                    

擴展基本資訊

名稱 PayPal Recurring Payment, Subscription Export PayPal Recurring Payment, Subscription Export
ID jlkmgflbilbhfciigmjbgiohkhiilmfn
官方網址 https://chromewebstore.google.com/detail/paypal-recurring-payment/jlkmgflbilbhfciigmjbgiohkhiilmfn
簡介 Exports all PayPal Recurring Payments / Subscriptions as CSV
檔案大小 5.7 KB
安裝次數 53
目前版本 0.2
更新時間 2023-12-21
上架時間 2023-02-22
評分 5.00/5 共 2 次評分
開發者 www.kleinanzeigen-enhanced.de
電子郵箱 [email protected]
付費類型 free
隱私政策頁面URL https://kleinanzeigen-enhanced.de/datenschutz
支援的語言 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"
            ]
        }
    ]
}