Hudl Clip Link

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

Wat is Hudl Clip Link?

Hudl Clip Link is een Chrome-extensie ontwikkeld door laurentchicoine, en de belangrijkste functie is "Updates Hudl Library URL with a direct link to the clip being played".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Hudl Clip Link

Download Hudl Clip Link-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Hudl Clip Link Hudl Clip Link
ID aibmlpojgkmjjnfbehnbfegcfgglghlg
Officiële URL https://chromewebstore.google.com/detail/hudl-clip-link/aibmlpojgkmjjnfbehnbfegcfgglghlg
Beschrijving Updates Hudl Library URL with a direct link to the clip being played
Bestandsgrootte 62.13 KB
Aantal Installaties 310
Huidige Versie 0.0.0.3
Laatst Bijgewerkt 2021-02-17
Publicatiedatum 2018-08-11
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar laurentchicoine
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    }
}