Hudu Link

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

Qu'est-ce que Hudu Link ?

Hudu Link est une extension Chrome développée par tom, et sa fonction principale est "Creates links to Hudu customers pages on Syncro Ticket and Customer pages.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Hudu Link

Téléchargez les fichiers d'extension Hudu Link au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Hudu Link Hudu Link
ID pnjhghbpfjngdfccaghfhakfhidkaolj
URL Officiel https://chromewebstore.google.com/detail/hudu-link/pnjhghbpfjngdfccaghfhakfhidkaolj
Description Creates links to Hudu customers pages on Syncro Ticket and Customer pages.
Taille du Fichier 37.41 KB
Nombre d'Installations 164
Version Actuelle 1.3
Dernière Mise à Jour 2021-11-25
Date de Publication 2021-11-24
Évaluation 5.00/5 Total 1 Évaluations
Développeur tom
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}