Fast Forward Speed Control

Control the playback speed of videos beyond standard limits.

Что такое Fast Forward Speed Control?

Fast Forward Speed Control - это расширение Chrome, разработанное ervikth, и его основная функция - "Control the playback speed of videos beyond standard limits.".

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

screenshot

Скачать файл CRX расширения Fast Forward Speed Control

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

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

                        Quick Guide:
To increase speed: Click '>>' or scroll up
To decrease speed: Click '<<' or scroll down

Take control of video playback speeds effortlessly with our extension, surpassing the standard 2x limit with a mere icon click or a scroll. Designed to be lightweight and intuitive, it offers seamless speed adjustments for an uninterrupted viewing experience, free from obtrusive controls                    

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

Название Fast Forward Speed Control Fast Forward Speed Control
ID onphnbdaloaeamdhncmepiklcplinpke
Официальный URL https://chromewebstore.google.com/detail/fast-forward-speed-contro/onphnbdaloaeamdhncmepiklcplinpke
Описание Control the playback speed of videos beyond standard limits.
Размер файла 21.68 KB
Количество установок 7,255
Текущая Версия 1.60
Последнее Обновление 2024-01-22
Дата публикации 2016-07-23
Рейтинг 4.27/5 Всего 11 оценок
Разработчик ervikth
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/Ervikth
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Fast Forward Speed Control",
    "version": "1.60",
    "description": "Control the playback speed of videos beyond standard limits.",
    "permissions": [
        "storage",
        "activeTab"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icons\/icon16.png",
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    }
}