Hudl Clip Link
Updates Hudl Library URL with a direct link to the clip being played
Hudl Clip Linkとは何ですか?
Hudl Clip Linkはlaurentchicoineによって開発されたChromeの拡張機能で、その主な機能は「Updates Hudl Library URL with a direct link to the clip being played」です。
拡張機能のスクリーンショット
Hudl Clip Link拡張機能のCRXファイルをダウンロード
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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
}
} | |