Chargebee Payment Reconciliation Plugin

The Chargebee plugin helps automate payment reconciliation in QuickBooks/Xero with your gateway statement.

Chargebee Payment Reconciliation Plugin란 무엇입니까?

Chargebee Payment Reconciliation Plugin은(는) Chargebee에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The Chargebee plugin helps automate payment reconciliation in QuickBooks/Xero with your gateway statement."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Chargebee Payment Reconciliation Plugin 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Chargebee is a subscription management and recurring billing product used by over tens of thousands of businesses across 53 countries. New business owners and entrepreneurs can leverage Chargebee’s plug and play solution to create a frictionless subscription experience, without writing a single line of code. Growing businesses can use Chargebee’s powerful REST API to customize billing workflows. Chargebee integrates with payment gateways such as Stripe, Braintree, and Paypal; and business applications such as Quickbooks/Xero, and Salesforce among others.

The Chargebee - QuickBooks/Xero Chrome Plugin matches your gateway statements to the book of accounts, without breaking a sweat. You can automate reconciliation of Stripe payments into QuickBooks/Xero in the click of a button. You won’t have to worry about formatting pains. Chargebee will understand the gateway type and convert your gateway statement to a format acceptable by QuickBooks/Xero.                    

확장 프로그램 기본 정보

이름 Chargebee Payment Reconciliation Plugin Chargebee Payment Reconciliation Plugin
ID gpemlmpjblhbjffmhbalomoonjblaolb
공식 URL https://chrome.google.com/webstore/detail/chargebee-payment-reconci/gpemlmpjblhbjffmhbalomoonjblaolb
설명 The Chargebee plugin helps automate payment reconciliation in QuickBooks/Xero with your gateway statement.
파일 크기 159 KB
설치 횟수 226
현재 버전 0.0.3
최근 업데이트 2019-09-30
출시 날짜 2019-09-30
평점 5.00/5 총 1 개의 평점
개발자 Chargebee
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.chargebee.com
도움말 페이지 URL https://support.chargebee.com
개인정보 보호 정책 페이지 URL https://www.chargebee.com/privacy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chargebee Payment Reconciliation Plugin",
    "short_name": "Chargebee Payment Reconciliation",
    "author": "Chargebee",
    "description": "The Chargebee plugin helps automate payment reconciliation in QuickBooks\/Xero with your gateway statement.",
    "homepage_url": "https:\/\/github.com\/chargebee\/cb-reconciliation-plugins",
    "version": "0.0.3",
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Chargebee Payment Reconciliation Plugin",
        "default_icon": {
            "16": "assets\/Icon_16.png",
            "24": "assets\/Icon_24.png",
            "32": "assets\/Icon_32.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/go.xero.com\/Bank\/*"
            ],
            "css": [
                "css\/style.css"
            ],
            "js": [
                "js\/lib\/jquery.js",
                "js\/lib\/toast.js",
                "js\/lib\/recManager.js",
                "js\/xero.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.qbo.intuit.com\/*"
            ],
            "css": [
                "css\/style.css"
            ],
            "js": [
                "js\/lib\/jquery.js",
                "js\/lib\/toast.js",
                "js\/lib\/recManager.js",
                "js\/qb.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage"
    ]
}