Chargebee Payment Reconciliation Plugin

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

¿Qué es Chargebee Payment Reconciliation Plugin?

Chargebee Payment Reconciliation Plugin es una extensión de Chrome desarrollada por Chargebee, y su función principal es "The Chargebee plugin helps automate payment reconciliation in QuickBooks/Xero with your gateway statement.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Chargebee Payment Reconciliation Plugin

Descarga archivos de extensión Chargebee Payment Reconciliation Plugin en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Chargebee Payment Reconciliation Plugin Chargebee Payment Reconciliation Plugin
ID gpemlmpjblhbjffmhbalomoonjblaolb
URL Oficial https://chrome.google.com/webstore/detail/chargebee-payment-reconci/gpemlmpjblhbjffmhbalomoonjblaolb
Descripción The Chargebee plugin helps automate payment reconciliation in QuickBooks/Xero with your gateway statement.
Tamaño del Archivo 159 KB
Cantidad de Instalaciones 226
Versión Actual 0.0.3
Última Actualización 2019-09-30
Fecha de Publicación 2019-09-30
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador Chargebee
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://www.chargebee.com
URL de la Página de Ayuda https://support.chargebee.com
URL de la Página de Política de Privacidad https://www.chargebee.com/privacy
Idiomas Soportados 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"
    ]
}