Hide YouTube™ Fullscreen Controls
Hide the YouTube™ fullscreen controls with the press of a hotkey or when you move the cursor to the display border.
什麼是Hide YouTube™ Fullscreen Controls?
Hide YouTube™ Fullscreen Controls是由superananas2開發的Chrome擴展程式,該擴展的主要功能是“Hide the YouTube™ fullscreen controls with the press of a hotkey or when you move the cursor to the display border.”。
擴展截圖
下載Hide YouTube™ Fullscreen Controls擴展crx文件
下載Hide YouTube™ Fullscreen Controls擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Does YouTube™ leave the video controls visible for longer than you like? Do you want to have a hotkey that toggles the controls?
This add-on let's you:
- Hide the video controls when you move the cursor to any border
- Hide the video controls and only show them when you want.
- Toggle the controls when you press a hotkey
- Hide some video overlays
- Hide the play/pause animation
In the add-on settings you can configure the individual sides as well as the hotkey.
If you experience any issues, please let me know at https://github.com/nralbrecht/youtube-hide-controls/issues
Note: The add-on currently does not work with embedded YouTube™ players.
YouTube™ is a trademark of Google Inc.
Use of this trademark is subject to Google Permissions. 擴展基本資訊
| 名稱 | |
| ID | akkdefghgcakdgkmakeajmijjhlcofmk |
| 官方網址 | https://chromewebstore.google.com/detail/hide-youtube-fullscreen-c/akkdefghgcakdgkmakeajmijjhlcofmk |
| 簡介 | Hide the YouTube™ fullscreen controls with the press of a hotkey or when you move the cursor to the display border. |
| 檔案大小 | 20.4 KB |
| 安裝次數 | 3,000 |
| 目前版本 | 3.1.4 |
| 更新時間 | 2022-11-25 |
| 上架時間 | 2020-10-12 |
| 評分 | 4.94/5 共 31 次評分 |
| 開發者 | superananas2 |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/nralbrecht/youtube-hide-controls |
| 說明頁面URL | https://github.com/nralbrecht/youtube-hide-controls/issues |
| 支援的語言 | de,en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"homepage_url": "https:\/\/github.com\/nralbrecht\/youtube-hide-controls",
"default_locale": "en",
"icons": {
"128": "icon_128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"content-script.js"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"player.js",
"player.css",
"icon.svg",
"options\/options.html"
],
"matches": [
"*:\/\/*.youtube.com\/*"
]
}
],
"options_ui": {
"page": "options\/options.html"
},
"permissions": [
"storage"
],
"host_permissions": [
"*:\/\/www.youtube.com\/*"
],
"version": "3.1.4"
} | |