YouTube Player Speed Controls
Adds playback speed controls to player control bar.
Что такое YouTube Player Speed Controls?
YouTube Player Speed Controls - это расширение Chrome, разработанное Seishin4real, и его основная функция - "Adds playback speed controls to player control bar.".
Снимки экрана расширения
Скачать файл CRX расширения YouTube Player Speed Controls
Скачайте файлы расширений YouTube Player Speed Controls в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Adds playback speed controls to the control bar of the youtube player. Основная информация о расширении
| Название | |
| ID | acibbdogpnpdfhhhhiofgegplmhhffgf |
| Официальный URL | https://chromewebstore.google.com/detail/youtube-player-speed-cont/acibbdogpnpdfhhhhiofgegplmhhffgf |
| Описание | Adds playback speed controls to player control bar. |
| Размер файла | 14.8 KB |
| Количество установок | 975 |
| Текущая Версия | 1.0 |
| Последнее Обновление | 2019-05-02 |
| Дата публикации | 2019-05-02 |
| Рейтинг | 4.29/5 Всего 17 оценок |
| Разработчик | Seishin4real |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "YouTube Player Speed Controls",
"version": "1.0",
"manifest_version": 2,
"description": "Adds playback speed controls to player control bar.",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon48.png"
},
"permissions": [
"storage",
"*:\/\/www.youtube.com\/*"
],
"options_page": "options.html",
"content_scripts": [
{
"all_frames": true,
"matches": [
"*:\/\/www.youtube.com\/*"
],
"css": [
"styles.css"
],
"js": [
"scripts\/scripts.js"
]
}
]
} | |