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
官方網址 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"
    ]
}