Hudl Clip Link
Updates Hudl Library URL with a direct link to the clip being played
Vad är Hudl Clip Link?
Hudl Clip Link är en Chrome-tillägg utvecklad av laurentchicoine, och dess huvudfunktion är "Updates Hudl Library URL with a direct link to the clip being played".
Tilläggsskärmbilder
Ladda ner Hudl Clip Link-förlängningens CRX-fil
Ladda ner Hudl Clip Link-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | Hudl Clip Link |
ID | aibmlpojgkmjjnfbehnbfegcfgglghlg |
Officiell webbadress | https://chromewebstore.google.com/detail/hudl-clip-link/aibmlpojgkmjjnfbehnbfegcfgglghlg |
Beskrivning | Updates Hudl Library URL with a direct link to the clip being played |
Filstorlek | 62.13 KB |
Antal Installationer | 310 |
Aktuell Version | 0.0.0.3 |
Senast Uppdaterad | 2021-02-17 |
Publiceringsdatum | 2018-08-11 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | laurentchicoine |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } } |