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.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة hyde — hide the YouTube video player controls
قم بتنزيل ملفات الامتداد hyde — hide the YouTube video player controls بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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. معلومات أساسية عن التمديد
| الاسم | |
| 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"
]
} | |