Youtube Shorts Controller
Youtube Shorts Controller for fast-forwarding, rewinding, and modifying playback speed
Что такое Youtube Shorts Controller?
Youtube Shorts Controller - это расширение Chrome, разработанное aomerrill98, и его основная функция - "Youtube Shorts Controller for fast-forwarding, rewinding, and modifying playback speed".
Снимки экрана расширения
Скачать файл CRX расширения Youtube Shorts Controller
Скачайте файлы расширений Youtube Shorts Controller в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension allows you to fast forward and rewind YouTube shorts by 2.5 and 5 seconds. It also allows you to modify playback speed in increments of .25x. The current playback speed as well as timestamp are also displayed on the bottom left of the video. Controls: w/a/A/s/d/D Fast Forward: d - 2.5s D - 5s Rewind: a - 2.5s A - 5s Playback Speed: w - increment by .25x s - decrement by .25x
Основная информация о расширении
Название | Youtube Shorts Controller |
ID | ficbdkikbblcnkclmfkkppgmfgbcihch |
Официальный URL | https://chromewebstore.google.com/detail/youtube-shorts-controller/ficbdkikbblcnkclmfkkppgmfgbcihch |
Описание | Youtube Shorts Controller for fast-forwarding, rewinding, and modifying playback speed |
Размер файла | 27.82 KB |
Количество установок | 832 |
Текущая Версия | 1.0.3 |
Последнее Обновление | 2023-11-30 |
Дата публикации | 2022-12-14 |
Рейтинг | 4.73/5 Всего 11 оценок |
Разработчик | aomerrill98 |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Youtube Shorts Controller", "version": "1.0.3", "description": "Youtube Shorts Controller for fast-forwarding, rewinding, and modifying playback speed", "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "css": [ "styles.css" ], "js": [ "youtube-shorts-controller-script.js" ] } ], "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" } } |