Controls for YouTube™ Shorts
Add controls for videos of YouTube™ shorts, including shortcuts!
什麼是Controls for YouTube™ Shorts?
Controls for YouTube™ Shorts是由edoan開發的Chrome擴展程式,該擴展的主要功能是“Add controls for videos of YouTube™ shorts, including shortcuts!”。
擴展截圖
下載Controls for YouTube™ Shorts擴展crx文件
下載Controls for YouTube™ Shorts擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Add a control bar below videos from YouTube Shorts.
Options:
- Always visible controls: it's not necessary to hover over the video for the controls to appear.
- Hide title and channel: when not hovering over the video, this option will hide the video information that overlays the video.
- Control volume with Arrow Up/Down: allow you to control the volume with arrow keys without holding shift/cmd, it is optional, as many users use it to scroll between shorts.
Keyboard shortcuts:
- Left/Right arrow keys to backward/forward the video by 5 seconds.
- Shift/Cmd + Up/Down arrow keys to increase/decrease the volume.
- "M" to mute/unmute the video.
- Spacebar to pause/resume the video. 擴展基本資訊
| 名稱 | |
| ID | daocpklojfnjgomjaemhhibodkpcjlpe |
| 官方網址 | https://chromewebstore.google.com/detail/controls-for-youtube-shor/daocpklojfnjgomjaemhhibodkpcjlpe |
| 簡介 | Add controls for videos of YouTube™ shorts, including shortcuts! |
| 檔案大小 | 264 KB |
| 安裝次數 | 4,011 |
| 目前版本 | 1.3.45 |
| 更新時間 | 2024-01-28 |
| 上架時間 | 2023-06-22 |
| 評分 | 4.79/5 共 34 次評分 |
| 開發者 | edoan |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/Zennos/controls-for-yt-shorts |
| 支援的語言 | en,pt-BR |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_AppName__",
"version": "1.3.45",
"manifest_version": 3,
"description": "__MSG_AppDescription__",
"permissions": [
"storage",
"scripting"
],
"host_permissions": [
"*:\/\/*.youtube.com\/*"
],
"default_locale": "en",
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"css": [
"css\/content_script.css"
],
"js": [
"libs\/mutation_summary.js",
"libs\/fluidplayer.min.js",
"js\/observer.js",
"js\/utils.js",
"js\/content_script.js"
]
}
],
"action": {
"default_popup": "html\/popup.html",
"default_icon": {
"16": "images\/icons\/normal\/icon-16.png",
"48": "images\/icons\/normal\/icon-48.png",
"32": "images\/icons\/normal\/icon-128.png"
}
},
"icons": {
"16": "images\/icons\/normal\/icon-16.png",
"48": "images\/icons\/normal\/icon-48.png",
"128": "images\/icons\/normal\/icon-128.png"
}
} | |