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
Eメール [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"
    }
}