Video Stream Master

For controlling video playback speed and other features

Что такое Video Stream Master?

Video Stream Master - это расширение Chrome, разработанное tsonglew, и его основная функция - "For controlling video playback speed and other features".

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

screenshot

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

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

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

                        Video player master for controlling video playback speed and other features                    

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

Название Video Stream Master Video Stream Master
ID knnigbekdblcdhjlnmpcfijkeffenhmp
Официальный URL https://chromewebstore.google.com/detail/video-stream-master/knnigbekdblcdhjlnmpcfijkeffenhmp
Описание For controlling video playback speed and other features
Размер файла 709 KB
Количество установок 46
Текущая Версия 1.0
Последнее Обновление 2023-03-01
Дата публикации 2023-03-01
Разработчик tsonglew
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/tsonglew/video-stream-master
URL страницы помощи https://github.com/tsonglew/video-stream-master/issues
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Video Stream Master",
    "description": "For controlling video playback speed and other features",
    "version": "1.0",
    "icons": {
        "16": "logo.ico",
        "32": "logo.ico",
        "48": "logo.ico",
        "128": "logo.ico"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "static\/js\/content.js"
            ]
        }
    ],
    "options_page": "options.html",
    "content_security_policy": {
        "script-src": "self",
        "object-src": "self"
    },
    "commands": {
        "speedup": {
            "suggested_key": {
                "default": "Ctrl+Shift+W",
                "mac": "MacCtrl+Shift+W"
            },
            "description": "increase playspeed rate"
        },
        "speeddown": {
            "suggested_key": {
                "default": "Ctrl+Shift+S",
                "mac": "MacCtrl+Shift+S"
            },
            "description": "decrease playspeed rate"
        }
    },
    "background": {
        "service_worker": "static\/js\/background.js"
    }
}