Video Speed Controller

Control HTML video speed.

Что такое Video Speed Controller?

Video Speed Controller - это расширение Chrome, разработанное jojonki, и его основная функция - "Control HTML video speed.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Video Speed Controller

Скачайте файлы расширений Video Speed Controller в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Control Youtube video speed with shortcuts. Unlike Youtube original speed adjustment, you can speed up as much as you want.
 
- Ctrl + Shift + L : Speed Up.
- Ctrl + Shift + J : Speed Down.
- Ctrl + Shift + K : Speed Neutral.

You can customize the shortcuts at chrome://extensions/shortcuts.

The source code is fully available.
https://github.com/jojonki/video-speed-controller                    

Основная информация о расширении

Название Video Speed Controller Video Speed Controller
ID ndbdjjgcjmdenadephbmglknakcnalil
Официальный URL https://chromewebstore.google.com/detail/video-speed-controller/ndbdjjgcjmdenadephbmglknakcnalil
Описание Control HTML video speed.
Размер файла 637 KB
Количество установок 415
Текущая Версия 2.0
Последнее Обновление 2022-12-29
Дата публикации 2021-03-07
Рейтинг 4.50/5 Всего 2 оценок
Разработчик jojonki
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/jojonki/video-speed-controller/
URL страницы помощи https://github.com/jojonki/video-speed-controller/
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video Speed Controller",
    "version": "2.0",
    "description": "Control HTML video speed.",
    "permissions": [
        "scripting",
        "activeTab",
        "notifications"
    ],
    "host_permissions": [
        "https:\/\/youtube.com\/*"
    ],
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "16": "images\/icon_16.png",
            "24": "images\/icon_24.png",
            "32": "images\/icon_32.png",
            "48": "images\/icon_48.png",
            "128": "images\/icon_128.png"
        },
        "default_title": "Control Video Speed"
    },
    "commands": {
        "speed-up": {
            "suggested_key": {
                "default": "Ctrl+Shift+L",
                "mac": "MacCtrl+Shift+L"
            },
            "description": "Speed Up",
            "global": false
        },
        "speed-down": {
            "suggested_key": {
                "default": "Ctrl+Shift+J",
                "mac": "MacCtrl+Shift+J"
            },
            "description": "Speed Down",
            "global": false
        },
        "speed-neutral": {
            "suggested_key": {
                "default": "Ctrl+Shift+K",
                "mac": "MacCtrl+Shift+K"
            },
            "description": "Speed Neutral",
            "global": false
        }
    },
    "icons": {
        "16": "images\/icon_16.png",
        "24": "images\/icon_24.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    }
}