UI Power Tools for QuickBooks Online

This extension exposes QuickBooks Online transaction IDs in the user interface, and enables searching by Transaction ID

Co je UI Power Tools for QuickBooks Online?

UI Power Tools for QuickBooks Online je rozšíření Chrome vyvinuté Simon C, a jeho hlavní funkcí je „This extension exposes QuickBooks Online transaction IDs in the user interface, and enables searching by Transaction ID“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření UI Power Tools for QuickBooks Online

Stáhněte si soubory rozšíření UI Power Tools for QuickBooks Online ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        UI Power Tools for QuickBooks Online adds the following additional functionality to the Quickbooks Online user interface:

- Exposing the Transaction ID of transactions on the Sales and Expenses screen
- Providing a "Goto" function for Transaction ID
- Quick navigation via the extension button (no need to wait for the Sales screen to load to get to the Customers screen)

Under the hood QuickBooks Online uses a transaction ID field to uniquely identify each transaction. This field is very useful when using the QuickBooks Online API to interface QBO to other systems. However, when checking up on transactions that have been interfaced, it would be useful to be able to see and search by the Transaction ID in QuickBooks Online, hence why this tool was developed.

This tool won 3rd prize at the smallbizhacklondon 2018 organised by Intuit (the makers of Quickbooks Online).

Any suggestions for improvements and further functionality are welcome in the reviews.                    

Základní Informace o Rozšíření

Název UI Power Tools for QuickBooks Online UI Power Tools for QuickBooks Online
ID celcppacmcfaifaioplbfkifmainnpgb
Oficiální URL https://chrome.google.com/webstore/detail/ui-power-tools-for-quickb/celcppacmcfaifaioplbfkifmainnpgb
Popis This extension exposes QuickBooks Online transaction IDs in the user interface, and enables searching by Transaction ID
Velikost souboru 17.43 KB
Počet instalací 1,000
Aktuální Verze 1.1
Poslední Aktualizace 2018-03-17
Datum Vydání 2018-03-17
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář Simon C
Typ Platby free
Podporované Jazyky en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "UI Power Tools for QuickBooks Online",
    "description": "This extension exposes QuickBooks Online transaction IDs in the user interface, and enables searching by Transaction ID",
    "version": "1.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.qbo.intuit.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "permissions": [
        "tabs",
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "",
        "storage",
        "webRequest"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    }
}