Play with MPV

Sends videos in pages like youtube to an external MPV player

O que é Play with MPV?

Play with MPV é uma extensão do Chrome desenvolvida por Thann, e sua principal característica é "Sends videos in pages like youtube to an external MPV player".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Play with MPV

Baixe arquivos de extensão Play with MPV no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Chrome extension and python server that allows you to play videos in webpages with MPV instead.
Right-click links and pages to play videos in MPV. (Or Ctrl+Space)
Works on nearly every website thanks to youtube-dl.

Requires several dependencies, see website for more info.

1. Install MPV
2. Install Python 2 or 3 and pip
3. Install this chrome extension
4. Install server: `pip install git+git://github.com/thann/play-with-mpv --user`
5. Run server: `play-with-mpv` from the terminal or use linux shortcut
6. (optional) Autostart on linux: `cp ~/.local/share/applications/thann.play-with-mpv.desktop ~/.config/autostart/`                    

Informações Básicas da Extensão

Nome Play with MPV Play with MPV
ID hahklcmnfgffdlchjigehabfbiigleji
URL Oficial https://chromewebstore.google.com/detail/play-with-mpv/hahklcmnfgffdlchjigehabfbiigleji
Descrição Sends videos in pages like youtube to an external MPV player
Tamanho do Arquivo 21.75 KB
Contagem de Instalações 5,795
Versão Atual 0.1.0
Última Atualização 2020-05-01
Data de Publicação 2020-05-01
Classificação 4.32/5 Total de 25 Avaliações
Desenvolvedor Thann
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/Thann/play-with-mpv
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Play with MPV",
    "version": "0.1.0",
    "manifest_version": 2,
    "description": "Sends videos in pages like youtube to an external MPV player",
    "homepage_url": "https:\/\/github.com\/thann\/play-with-mpv",
    "icons": {
        "128": "mpv-logo.png"
    },
    "page_action": {
        "default_icon": "mpv-logo.png",
        "default_title": "Play with MPV"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "storage",
        "activeTab",
        "contextMenus",
        "http:\/\/localhost\/"
    ],
    "commands": {
        "launch": {
            "suggested_key": {
                "default": "Ctrl+Space"
            },
            "description": "Play with MPV"
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    }
}