Chargebee Payment Reconciliation Plugin

Chargebee Payment Reconciliation Plugin

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

Merlin
Additional files are visible only to premium users

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"
  ]
}