Hudl Clip Link

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

什么是Hudl Clip Link?

Hudl Clip Link是由laurentchicoine开发的Chrome扩展程序,该扩展的主要功能是“Updates Hudl Library URL with a direct link to the clip being played”。

扩展截图

screenshot

下载Hudl Clip Link扩展crx文件

下载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"
    }
}