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 là gì?
Hide YouTube™ Fullscreen Controls là một tiện ích mở rộng Chrome được phát triển bởi superananas2, và tính năng chính của nó là "Hide the YouTube™ fullscreen controls with the press of a hotkey or when you move the cursor to the display border.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Hide YouTube™ Fullscreen Controls
Tải xuống các tệp mở rộng Hide YouTube™ Fullscreen Controls dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Hide YouTube™ Fullscreen Controls |
ID | akkdefghgcakdgkmakeajmijjhlcofmk |
URL Chính Thức | https://chromewebstore.google.com/detail/hide-youtube-fullscreen-c/akkdefghgcakdgkmakeajmijjhlcofmk |
Mô tả | Hide the YouTube™ fullscreen controls with the press of a hotkey or when you move the cursor to the display border. |
Kích Thước Tệp | 20.4 KB |
Số Lần Cài Đặt | 3,000 |
Phiên Bản Hiện Tại | 3.1.4 |
Cập Nhật Lần Cuối | 2022-11-25 |
Ngày Phát Hành | 2020-10-12 |
Đánh Giá | 4.94/5 Tổng số 31 Đánh Giá |
Nhà Phát Triển | superananas2 |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/nralbrecht/youtube-hide-controls |
URL Trang Trợ Giúp | https://github.com/nralbrecht/youtube-hide-controls/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" } |