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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย karmdesai และคุณลักษณะหลักของมันคือ "Press Ctrl+M to hide or show the YouTube video player controls."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย hyde — hide the YouTube video player controls

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    ]
}