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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hide the YouTube™ fullscreen controls with the press of a hotkey or when you move the cursor to the display border."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Hide YouTube™ Fullscreen Controls एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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