Go to Customer Button for QuickBooks Online

This extension adds a button to the invoice screen

Hvad er Go to Customer Button for QuickBooks Online?

Go to Customer Button for QuickBooks Online er en Chrome-udvidelse udviklet af Simon C, og dens hovedfunktion er "This extension adds a button to the invoice screen".

Udvidelsesskærmbilleder

screenshot

Download Go to Customer Button for QuickBooks Online-udvidelses-CRX-fil

Download Go to Customer Button for QuickBooks Online-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        This extension adds a button to the invoice screen, allowing users to quickly visit the customer account for the customer associated with the invoice.                    

Grundlæggende oplysninger om udvidelsen

Navn Go to Customer Button for QuickBooks Online Go to Customer Button for QuickBooks Online
ID oihjnaipmkladihjdmlladafdidmclpg
Officiel URL https://chromewebstore.google.com/detail/go-to-customer-button-for/oihjnaipmkladihjdmlladafdidmclpg
Beskrivelse This extension adds a button to the invoice screen
Filstørrelse 74.59 KB
Antal Installationer 37
Nuværende Version 1.0.1
Senest Opdateret 2018-11-21
Udgivelsesdato 2018-11-21
Udvikler Simon C
Betalingsmetode free
Understøttede Sprog en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Go to Customer Button for QuickBooks Online",
    "description": "This extension adds a button to the invoice screen",
    "version": "1.0.1",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.qbo.intuit.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "permissions": [
        "activeTab",
        "http:\/\/*.qbo.intuit.com\/*",
        "https:\/\/*.qbo.intuit.com\/*"
    ]
}