YouTube Hotkeys
Your YouTube Hotkeys for play, pause, play next video and repeat.
ما هو YouTube Hotkeys؟
YouTube Hotkeys هو إضافة Chrome تم تطويرها بواسطة Giovani Silva، والميزة الرئيسية لها هي "Your YouTube Hotkeys for play, pause, play next video and repeat.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة YouTube Hotkeys
قم بتنزيل ملفات الامتداد YouTube Hotkeys بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension adds hotkeys to your youTube page, now you can control the videos you are watching from anywhere, even when you are away from browser! You can also set your video to repeat, check the extension icon to know when your video is in repeating mode or not. Default Keyboard shortcuts: Next Video : Alt+Shift+Period Play/Pause : Alt+Shift+P Previous Video : Alt+Shift+Comma Repeat Video : Alt+Shift+R To configure go to chrome://extensions/configureCommands
معلومات أساسية عن التمديد
الاسم | |
ID | nikecddgokknoehjljdkhkilicpcacmo |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/youtube-hotkeys/nikecddgokknoehjljdkhkilicpcacmo |
الوصف | Your YouTube Hotkeys for play, pause, play next video and repeat. |
حجم الملف | 75.94 KB |
عدد التثبيتات | 785 |
النسخة الحالية | 1.1 |
آخر تحديث | 2018-04-06 |
تاريخ النشر | 2018-04-06 |
تقييم | 4.53/5 مجموع تقييمات 15 |
المطور | Giovani Silva |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Hotkeys", "description": "Your YouTube Hotkeys for play, pause, play next video and repeat.", "version": "1.1", "incognito": "split", "background": { "persistent": false, "scripts": [ "background.js" ] }, "commands": { "next": { "description": "Next track", "suggested_key": "Alt+Shift+Period" }, "play-pause": { "description": "Play\/Pause", "suggested_key": "Alt+Shift+P" }, "previous": { "description": "Previous track", "suggested_key": "Alt+Shift+Comma" }, "repeat": { "description": "Repeat", "suggested_key": "Alt+Shift+R" } }, "browser_action": { "default_icon": "assets\/icon.png", "default_popup": "popup.html" }, "web_accessible_resources": [ "script.js", "content.js" ], "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "background", "contentSettings" ], "icons": { "16": "assets\/icon.png", "48": "assets\/icon.png", "128": "assets\/icon.png" } } |