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" } |