HTML5 Speedy Video
This extension adds fine-grained playback speed control on HTML5 videos.
ما هو HTML5 Speedy Video؟
HTML5 Speedy Video هو إضافة Chrome تم تطويرها بواسطة ricardobcl، والميزة الرئيسية لها هي "This extension adds fine-grained playback speed control on HTML5 videos.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة HTML5 Speedy Video
قم بتنزيل ملفات الامتداد HTML5 Speedy Video بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
It also adds these simple keyboard shortcuts:
| Key | Action |
| ------------------ | ---------------------- |
| control + `+` | Speed up by 0.2x |
| control + `-` | Slow down by 0.2x |
| control + `0` | Set speed to 1x |
| control + `1` | Set speed to 1x |
| control + `2` | Set speed to 2x |
| control + `3` | Set speed to 2.5x |
| control + `4` | Set speed to 3x |
| shift + :arrow_left: | \*\* Rewind 2 seconds |
| shift + :arrow_right: | \*\* Skip 2 seconds |
| shift + :arrow_down: | \*\* Rewind 10 seconds |
| shift + :arrow_up: | \*\* Skip 10 seconds | معلومات أساسية عن التمديد
| الاسم | |
| ID | caogcofklddclhfojcbmccggaohjngmh |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/html5-speedy-video/caogcofklddclhfojcbmccggaohjngmh |
| الوصف | This extension adds fine-grained playback speed control on HTML5 videos. |
| حجم الملف | 42.12 KB |
| عدد التثبيتات | 541 |
| النسخة الحالية | 2.1 |
| آخر تحديث | 2018-09-06 |
| تاريخ النشر | 2018-09-06 |
| تقييم | 4.00/5 مجموع تقييمات 3 |
| المطور | ricardobcl |
| نوع الدفع | free |
| موقع الإضافة | https://github.com/ricardobcl/HTML5-Speedy-Video-Extension |
| اللغات المدعومة | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "HTML5 Speedy Video",
"version": "2.1",
"description": "This extension adds fine-grained playback speed control on HTML5 videos.",
"offline_enabled": true,
"icons": {
"32": "icons\/Icon-32.png",
"64": "icons\/Icon-64.png",
"128": "icons\/Icon-128.png",
"256": "icons\/Icon-256.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/www.netflix.com\/*",
"https:\/\/www.netflix.com\/*",
"http:\/\/vimeo.com\/*",
"https:\/\/vimeo.com\/*",
"http:\/\/www.youtube.com\/*",
"https:\/\/www.youtube.com\/*"
],
"run_at": "document_idle",
"css": [
"style.css"
],
"js": [
"speedy.js"
]
}
]
} | |