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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
            ]
        }
    ]
}