Hudl Clip Link
Updates Hudl Library URL with a direct link to the clip being played
O que é Hudl Clip Link?
Hudl Clip Link é uma extensão do Chrome desenvolvida por laurentchicoine, e sua principal característica é "Updates Hudl Library URL with a direct link to the clip being played".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Hudl Clip Link
Baixe arquivos de extensão Hudl Clip Link no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Hudl Clip Link |
ID | aibmlpojgkmjjnfbehnbfegcfgglghlg |
URL Oficial | https://chromewebstore.google.com/detail/hudl-clip-link/aibmlpojgkmjjnfbehnbfegcfgglghlg |
Descrição | Updates Hudl Library URL with a direct link to the clip being played |
Tamanho do Arquivo | 62.13 KB |
Contagem de Instalações | 310 |
Versão Atual | 0.0.0.3 |
Última Atualização | 2021-02-17 |
Data de Publicação | 2018-08-11 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | laurentchicoine |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } |