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によって開発されたChromeの拡張機能で、その主な機能は「Press Ctrl+M to hide or show the YouTube video player controls.」です。

拡張機能のスクリーンショット

screenshot
screenshot

hyde — hide the YouTube video player controls拡張機能のCRXファイルをダウンロード

hyde — hide the YouTube video player controls拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    ]
}