Open In MPV

Open videos and audios in MPV.

Что такое Open In MPV?

Open In MPV - это расширение Chrome, разработанное Eric Karnes, и его основная функция - "Open videos and audios in MPV.".

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

screenshot

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

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

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

                        I modified the IINA Chrome extension to work with MPV so I'm not required to have a background process running like what the alternatives need.

The only caveat is that you need to assign MPV to the ytdl:// url scheme.

On a Mac this can be achieved by using https://github.com/Lord-Kamina/SwiftDefaultApps                    

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

Название Open In MPV Open In MPV
ID epaldpobheocfkfioepkcalnlhlgpcag
Официальный URL https://chrome.google.com/webstore/detail/open-in-mpv/epaldpobheocfkfioepkcalnlhlgpcag
Описание Open videos and audios in MPV.
Размер файла 399 KB
Количество установок 181
Текущая Версия 1.01
Последнее Обновление 2020-11-06
Дата публикации 2020-10-30
Рейтинг 1.00/5 Всего 1 оценок
Разработчик Eric Karnes
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/GreyAsteroid/open-in-mpv
URL страницы помощи https://github.com/GreyAsteroid/open-in-mpv/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Open In MPV",
    "description": "Open videos and audios in MPV.",
    "version": "1.01",
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_icon": {
            "16": "icon16.png",
            "19": "icon19.png",
            "32": "icon32.png",
            "38": "icon38.png",
            "48": "icon48.png",
            "64": "icon64.png",
            "96": "icon96.png",
            "128": "icon128.png",
            "256": "icon256.png",
            "512": "icon512.png"
        },
        "default_title": "Open In MPV"
    },
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "16": "icon16.png",
        "19": "icon19.png",
        "32": "icon32.png",
        "38": "icon38.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "96": "icon96.png",
        "128": "icon128.png",
        "256": "icon256.png",
        "512": "icon512.png"
    }
}