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.
拡張機能の基本情報
名前 | Hide YouTube™ Fullscreen Controls |
ID | akkdefghgcakdgkmakeajmijjhlcofmk |
公式URL | 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 |
Eメール | [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" } |