Hudl Clip Link

Updates Hudl Library URL with a direct link to the clip being played

Hudl Clip Link là gì?

Hudl Clip Link là một tiện ích mở rộng Chrome được phát triển bởi laurentchicoine, và tính năng chính của nó là "Updates Hudl Library URL with a direct link to the clip being played".

Ả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 Hudl Clip Link

Tải xuống các tệp mở rộng Hudl Clip 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

                        Unofficial Hudl plugin that updates the browser URL with the URL of the currently playing clip. This allows to easily integrate link to a specific clip into presentations or communications.

*This extension is only for the American Football version of the Hudl Library.                    

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

Tên Hudl Clip Link Hudl Clip Link
ID aibmlpojgkmjjnfbehnbfegcfgglghlg
URL Chính Thức https://chromewebstore.google.com/detail/hudl-clip-link/aibmlpojgkmjjnfbehnbfegcfgglghlg
Mô tả Updates Hudl Library URL with a direct link to the clip being played
Kích Thước Tệp 62.13 KB
Số Lần Cài Đặt 310
Phiên Bản Hiện Tại 0.0.0.3
Cập Nhật Lần Cuối 2021-02-17
Ngày Phát Hành 2018-08-11
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển laurentchicoine
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": "Hudl Clip Link",
    "description": "Updates Hudl Library URL with a direct link to the clip being played",
    "version": "0.0.0.3",
    "browser_action": {
        "default_icon": "icon-disabled.png"
    },
    "permissions": [
        "activeTab",
        "*:\/\/*.hudl.com\/library\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.hudl.com\/library\/*"
            ],
            "js": [
                "js\/jquery.min.js",
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}