hyde — hide the YouTube video player controls

Press Ctrl+M to hide or show the YouTube video player controls.

hyde — hide the YouTube video player controls क्या है?

hyde — hide the YouTube video player controls karmdesai द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Press Ctrl+M to hide or show the YouTube video player controls."।

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

screenshot
screenshot

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

crx प्रारूप में hyde — hide the YouTube video player controls एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

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

                        When you pause a YouTube video, the player controls don't disappear. That makes it really hard to take a clean screenshot of the video. The controls also block your view, which can get really annoying. Hyde is a simple Chrome extension that allows you to hide or show the video player controls easily. 

⭐ Simply use the keyboard shortcut Ctrl+M to hide the controls or show them again.                    

एक्सटेंशन की मूल जानकारी

नाम hyde — hide the YouTube video player controls hyde — hide the YouTube video player controls
ID pmkpddhfbiojipiehnejbjkgdgdpkdpb
आधिकारिक URL https://chromewebstore.google.com/detail/hyde-%E2%80%94-hide-the-youtube-v/pmkpddhfbiojipiehnejbjkgdgdpkdpb
विवरण Press Ctrl+M to hide or show the YouTube video player controls.
फ़ाइल का आकार 376 KB
स्थापना संख्या 56,829
वर्तमान संस्करण 1.1
अंतिम अपडेट 2022-06-10
प्रकाशन तिथि 2020-05-22
रेटिंग 4.31/5 कुल 293 रेटिंग्स
डेवलपर karmdesai
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "hyde \u2014 hide the YouTube video player controls",
    "version": "1.1",
    "description": "Press Ctrl+M to hide or show the YouTube video player controls.",
    "icons": {
        "16": "img\/icon16.png",
        "32": "img\/icon32.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "background": {
        "scripts": [
            "src\/background.js"
        ],
        "persistent": false
    },
    "commands": {
        "hide": {
            "suggested_key": {
                "default": "Ctrl+M"
            },
            "description": "hide\/show controls"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.youtube.com\/watch?*",
                "https:\/\/*.youtube.com\/watch?*"
            ],
            "js": [
                "src\/hide.js",
                "src\/show.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ]
}