Hudu Link

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

What is Hudu Link?

Hudu Link is a Chrome extension developed by tom, and its main feature is "Creates links to Hudu customers pages on Syncro Ticket and Customer pages.".

Extension Screenshots

screenshot

Download Hudu Link Extension CRX File

Download Hudu Link extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Hudu Link Hudu Link
ID pnjhghbpfjngdfccaghfhakfhidkaolj
Official URL https://chromewebstore.google.com/detail/hudu-link/pnjhghbpfjngdfccaghfhakfhidkaolj
Description Creates links to Hudu customers pages on Syncro Ticket and Customer pages.
File Size 37.41 KB
Installation Count 164
Current Version 1.3
Last Updated 2021-11-25
Publish Date 2021-11-24
Rating 5.00/5 Total 1 Ratings
Developer tom
Email [email protected]
Payment Type free
Supported Languages 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"
    }
}