Hudl Clip Link

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

Hudl Clip Linkคืออะไร?

Hudl Clip Link เป็นส่วนขยายของ Chrome ที่พัฒนาโดย laurentchicoine และคุณลักษณะหลักของมันคือ "Updates Hudl Library URL with a direct link to the clip being played"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Hudl Clip Link

ดาวน์โหลดไฟล์ส่วนขยาย Hudl Clip Link ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Hudl Clip Link Hudl Clip Link
ID aibmlpojgkmjjnfbehnbfegcfgglghlg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/hudl-clip-link/aibmlpojgkmjjnfbehnbfegcfgglghlg
คำอธิบาย Updates Hudl Library URL with a direct link to the clip being played
ขนาดไฟล์ 62.13 KB
จำนวนการติดตั้ง 310
เวอร์ชันปัจจุบัน 0.0.0.3
อัปเดตครั้งล่าสุด 2021-02-17
วันที่เผยแพร่ 2018-08-11
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา laurentchicoine
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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"
    }
}