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 |
| 公式URL | 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 |
| Eメール | [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"
}
} | |