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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย superananas2 และคุณลักษณะหลักของมันคือ "Hide the YouTube™ fullscreen controls with the press of a hotkey or when you move the cursor to the display border."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Hide YouTube™ Fullscreen Controls
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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" } |