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
官方網址 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"
    }
}