Hudu Link

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

什么是Hudu Link?

Hudu Link是由tom开发的Chrome扩展程序,该扩展的主要功能是“Creates links to Hudu customers pages on Syncro Ticket and Customer pages.”。

扩展截图

screenshot

下载Hudu Link扩展crx文件

下载Hudu Link扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Hudu Link Hudu Link
ID pnjhghbpfjngdfccaghfhakfhidkaolj
官方URL https://chromewebstore.google.com/detail/hudu-link/pnjhghbpfjngdfccaghfhakfhidkaolj
简介 Creates links to Hudu customers pages on Syncro Ticket and Customer pages.
文件大小 37.41 KB
安装次数 164
当前版本 1.3
更新时间 2021-11-25
上架时间 2021-11-24
评分 5.00/5 共1次评分
开发者 tom
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
    }
}