Hudl Clip Link

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

Qu'est-ce que Hudl Clip Link ?

Hudl Clip Link est une extension Chrome développée par laurentchicoine, et sa fonction principale est "Updates Hudl Library URL with a direct link to the clip being played".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Hudl Clip Link

Téléchargez les fichiers d'extension Hudl Clip Link au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Hudl Clip Link Hudl Clip Link
ID aibmlpojgkmjjnfbehnbfegcfgglghlg
URL Officiel https://chromewebstore.google.com/detail/hudl-clip-link/aibmlpojgkmjjnfbehnbfegcfgglghlg
Description Updates Hudl Library URL with a direct link to the clip being played
Taille du Fichier 62.13 KB
Nombre d'Installations 310
Version Actuelle 0.0.0.3
Dernière Mise à Jour 2021-02-17
Date de Publication 2018-08-11
Évaluation 5.00/5 Total 1 Évaluations
Développeur laurentchicoine
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}