ucollect

This app is a free extension for the uCollect.biz product. It does not work on its own. You must have a uCollect account and an…

ucollectとは何ですか?

ucollectはuCollectによって開発されたChromeの拡張機能で、その主な機能は「This app is a free extension for the uCollect.biz product. It does not work on its own. You must have a uCollect account and an…」です。

拡張機能のスクリーンショット

screenshot
screenshot

ucollect拡張機能のCRXファイルをダウンロード

ucollect拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This app is a free extension for the uCollect.biz product.  It does not work on its own.  You must have a uCollect account and an active Xero ledger (both of which are subscription based services).  This extension will overlay your uCollect data when you are logged into a Xero ledger (at xero.com) using the same email address as you use in uCollect.  

When you are viewing an invoice the extension will show you the uCollect Status for this invoice:
- Enabled (Gateway Name) - this contact has been enabled for automatic collection using the specified gateway
- Not Enabled - this contact has not had a gateway attached
- Contact Suspended - a gateway has been attached to this contact but collection has been suspended for all invoices
- Invoice Suspended - a gateway has been attached to this contact but collection has been suspended for this invoice
- Installments (Gateway Name) - a gateway has been attached to this contact and an installment plan has been loaded against this invoice

If you click on the Status you will be taken to the uCollect screen with the current contact displayed.

If you have Pay Now enabled in your uCollect organization then you will also see a link to the Pay Now screen.  You can use this (if properly configured) to accept credit card or ACH orders over the phone!

Please note that should Xero change their web interface this extension could stop working.

This extension does not change any of the data in your Xero ledger, and only adds code to the xero.com site presentation layer.  It does not impact any other site, submit any data to Xero.com or change any of your data displayed.  It simply adds a few bits of additional and useful information connected to your uCollect.biz account.

If you are not seeing the uCollect data please ensure that the email address you use to log into Xero is registered as a user in the uCollect.biz account for the same ledger.

If you need support for this extension please log into uCollect.biz and use the "Get live support" app on the site.                    

拡張機能の基本情報

名前 ucollect ucollect
ID bhmfmjcliaiaeijflkgonekoifcjkebg
公式URL https://chrome.google.com/webstore/detail/ucollect/bhmfmjcliaiaeijflkgonekoifcjkebg
説明 This app is a free extension for the uCollect.biz product. It does not work on its own. You must have a uCollect account and an…
ファイルサイズ 71.44 KB
インストール数 165
現在のバージョン 1.8
最終更新日 2019-03-01
公開日 2019-03-01
評価 5.00/5 合計 2 レビュー
開発者 uCollect
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト http://ucollect.biz
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ucollect",
    "description": "",
    "version": "1.8",
    "permissions": [
        "storage",
        "tabs",
        "*:\/\/*.xero.com\/*",
        "*:\/\/*.ucollect.com\/*",
        "*:\/\/*.ucollect.biz\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "js\/jquery.min.js",
            "js\/background.js"
        ]
    },
    "homepage_url": "https:\/\/go.xero.com",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/go.xero.com\/*",
                "*:\/\/invoicing.xero.com\/*",
                "*:\/\/dev.ucollect.com\/*",
                "*:\/\/app.ucollect.biz\/*"
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/background.js",
                "js\/monitor.js"
            ],
            "css": [
                "css\/style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "img\/icon_16.png",
        "48": "img\/icon_48.png",
        "128": "img\/icon_128.png"
    },
    "browser_action": {
        "default_icon": "img\/icon_16.png",
        "default_popup": "monitor.html"
    },
    "web_accessible_resources": [
        "css\/style.css",
        "img\/icon_128.png",
        "img\/status_128.png"
    ]
}