Hudl Clip Link
Updates Hudl Library URL with a direct link to the clip being played
Hvad er Hudl Clip Link?
Hudl Clip Link er en Chrome-udvidelse udviklet af laurentchicoine, og dens hovedfunktion er "Updates Hudl Library URL with a direct link to the clip being played".
Udvidelsesskærmbilleder
Download Hudl Clip Link-udvidelses-CRX-fil
Download Hudl Clip Link-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | aibmlpojgkmjjnfbehnbfegcfgglghlg |
| Officiel URL | https://chromewebstore.google.com/detail/hudl-clip-link/aibmlpojgkmjjnfbehnbfegcfgglghlg |
| Beskrivelse | Updates Hudl Library URL with a direct link to the clip being played |
| Filstørrelse | 62.13 KB |
| Antal Installationer | 310 |
| Nuværende Version | 0.0.0.3 |
| Senest Opdateret | 2021-02-17 |
| Udgivelsesdato | 2018-08-11 |
| Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
| Udvikler | laurentchicoine |
| [email protected] | |
| Betalingsmetode | free |
| Understøttede Sprog | 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"
}
} | |