Hudl Clip Link

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

Cos'è Hudl Clip Link?

Hudl Clip Link è un'estensione di Chrome sviluppata da laurentchicoine, e la sua funzione principale è "Updates Hudl Library URL with a direct link to the clip being played".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Hudl Clip Link

Scarica i file di estensione Hudl Clip Link in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Hudl Clip Link Hudl Clip Link
ID aibmlpojgkmjjnfbehnbfegcfgglghlg
URL Ufficiale https://chromewebstore.google.com/detail/hudl-clip-link/aibmlpojgkmjjnfbehnbfegcfgglghlg
Descrizione Updates Hudl Library URL with a direct link to the clip being played
Dimensione del File 62.13 KB
Conteggio Installazioni 310
Versione Corrente 0.0.0.3
Ultimo Aggiornamento 2021-02-17
Data di Pubblicazione 2018-08-11
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore laurentchicoine
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}