Hudu Link

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

Cos'è Hudu Link?

Hudu Link è un'estensione di Chrome sviluppata da tom, e la sua funzione principale è "Creates links to Hudu customers pages on Syncro Ticket and Customer pages.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Hudu Link

Scarica i file di estensione Hudu Link in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Hudu Link Hudu Link
ID pnjhghbpfjngdfccaghfhakfhidkaolj
URL Ufficiale https://chromewebstore.google.com/detail/hudu-link/pnjhghbpfjngdfccaghfhakfhidkaolj
Descrizione Creates links to Hudu customers pages on Syncro Ticket and Customer pages.
Dimensione del File 37.41 KB
Conteggio Installazioni 164
Versione Corrente 1.3
Ultimo Aggiornamento 2021-11-25
Data di Pubblicazione 2021-11-24
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore tom
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}