MPV Button

Adds a button for MPV player to YouTube

Что такое MPV Button?

MPV Button - это расширение Chrome, разработанное Unknown, и его основная функция - "Adds a button for MPV player to YouTube".

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

screenshot

Скачать файл CRX расширения MPV Button

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

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

                        Adds a button to YouTube videos on YouTube.com that lets you play the video in MPV player (https://github.com/XENKing/mpvbutton)                    

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

Название MPV Button MPV Button
ID kffgglnfnodcijffgdfbcaedicddooem
Официальный URL https://chromewebstore.google.com/detail/mpv-button/kffgglnfnodcijffgdfbcaedicddooem
Описание Adds a button for MPV player to YouTube
Размер файла 51.29 KB
Количество установок 133
Текущая Версия 1.2.3
Последнее Обновление 2020-03-17
Дата публикации 2020-03-17
Рейтинг 3.00/5 Всего 2 оценок
Разработчик Unknown
Тип оплаты free
Официальный сайт расширения https://github.com/XENKing/mpvbutton-chrome
URL страницы помощи https://github.com/XENKing/mpvbutton-chrome/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "1.2.3",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "homepage_url": "https:\/\/github.com\/XENKing\/mpvbutton-chrome",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/youtube.com\/*",
                "*:\/\/www.youtube.com\/*",
                "*:\/\/youtu.be\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ],
    "permissions": []
}