Hudu Link

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

Hudu Link là gì?

Hudu Link là một tiện ích mở rộng Chrome được phát triển bởi tom, và tính năng chính của nó là "Creates links to Hudu customers pages on Syncro Ticket and Customer pages.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Hudu Link

Tải xuống các tệp mở rộng Hudu Link dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Hudu Link Hudu Link
ID pnjhghbpfjngdfccaghfhakfhidkaolj
URL Chính Thức https://chromewebstore.google.com/detail/hudu-link/pnjhghbpfjngdfccaghfhakfhidkaolj
Mô tả Creates links to Hudu customers pages on Syncro Ticket and Customer pages.
Kích Thước Tệp 37.41 KB
Số Lần Cài Đặt 164
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2021-11-25
Ngày Phát Hành 2021-11-24
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển tom
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}