Hudl Clip Link

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

What is Hudl Clip Link?

Hudl Clip Link is a Chrome extension developed by laurentchicoine, and its main feature is "Updates Hudl Library URL with a direct link to the clip being played".

Extension Screenshots

screenshot

Download Hudl Clip Link Extension CRX File

Download Hudl Clip Link extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Hudl Clip Link Hudl Clip Link
ID aibmlpojgkmjjnfbehnbfegcfgglghlg
Official URL https://chromewebstore.google.com/detail/hudl-clip-link/aibmlpojgkmjjnfbehnbfegcfgglghlg
Description Updates Hudl Library URL with a direct link to the clip being played
File Size 62.13 KB
Installation Count 310
Current Version 0.0.0.3
Last Updated 2021-02-17
Publish Date 2018-08-11
Rating 5.00/5 Total 1 Ratings
Developer laurentchicoine
Email [email protected]
Payment Type free
Supported Languages 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"
    }
}