Hudu Link

Creates links to Hudu customers pages on Syncro Ticket and Customer pages.

Hvad er Hudu Link?

Hudu Link er en Chrome-udvidelse udviklet af tom, og dens hovedfunktion er "Creates links to Hudu customers pages on Syncro Ticket and Customer pages.".

Udvidelsesskærmbilleder

screenshot

Download Hudu Link-udvidelses-CRX-fil

Download Hudu Link-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

                        The add-on will put a link to hudu on your SyncroMSP ticket page next to the "Customer Info" title. You must have an API key for both Syncro and Hudu. The Syncro API key needs to have "ticket view detail" and "customer view detail" permissions.                    

Grundlæggende oplysninger om udvidelsen

Navn Hudu Link Hudu Link
ID pnjhghbpfjngdfccaghfhakfhidkaolj
Officiel URL https://chromewebstore.google.com/detail/hudu-link/pnjhghbpfjngdfccaghfhakfhidkaolj
Beskrivelse Creates links to Hudu customers pages on Syncro Ticket and Customer pages.
Filstørrelse 37.41 KB
Antal Installationer 164
Nuværende Version 1.3
Senest Opdateret 2021-11-25
Udgivelsesdato 2021-11-24
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler tom
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hudu Link",
    "version": "1.3",
    "description": "Creates links to Hudu customers pages on Syncro Ticket and Customer pages.",
    "icons": {
        "48": "icons\/border-48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "jquery-3.5.1.min.js",
                "hudulink.js"
            ]
        }
    ],
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "permissions": [
        "",
        "storage",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "options_ui": {
        "page": "options.html"
    }
}