Youtube speed control
This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ?
ما هو Youtube speed control؟
Youtube speed control هو إضافة Chrome تم تطويرها بواسطة wwf4، والميزة الرئيسية لها هي "This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ?".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Youtube speed control
قم بتنزيل ملفات الامتداد Youtube speed control بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
ctrl + > - to speed up video ctrl + < - to slow down video ctrl + ? - to return x1 speed;
معلومات أساسية عن التمديد
الاسم | |
ID | gdnknkknodmhgpompjfmhcodhcnamldo |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/youtube-speed-control/gdnknkknodmhgpompjfmhcodhcnamldo |
الوصف | This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ? |
حجم الملف | 70.77 KB |
عدد التثبيتات | 623 |
النسخة الحالية | 1.1 |
آخر تحديث | 2017-11-10 |
تاريخ النشر | 2017-11-10 |
تقييم | 4.75/5 مجموع تقييمات 4 |
المطور | wwf4 |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Youtube speed control", "description": "This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ?", "version": "1.1", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon.png" }, "permissions": [ "activeTab", "storage", "https:\/\/www.youtube.com\/" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "jquery-3.2.1.min.js", "content.js" ], "css": [ "styles.css" ], "all_frames": true } ] } |