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 |
| 官方網址 | 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"
}
} | |