Hudl Clip Link
Updates Hudl Library URL with a direct link to the clip being played
Что такое Hudl Clip Link?
Hudl Clip Link - это расширение Chrome, разработанное laurentchicoine, и его основная функция - "Updates Hudl Library URL with a direct link to the clip being played".
Снимки экрана расширения
Скачать файл CRX расширения Hudl Clip Link
Скачайте файлы расширений Hudl Clip Link в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | Hudl Clip Link |
ID | aibmlpojgkmjjnfbehnbfegcfgglghlg |
Официальный URL | https://chromewebstore.google.com/detail/hudl-clip-link/aibmlpojgkmjjnfbehnbfegcfgglghlg |
Описание | Updates Hudl Library URL with a direct link to the clip being played |
Размер файла | 62.13 KB |
Количество установок | 310 |
Текущая Версия | 0.0.0.3 |
Последнее Обновление | 2021-02-17 |
Дата публикации | 2018-08-11 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | laurentchicoine |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | 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" } } |