Open In MPV

Open videos and audios in MPV.

Cos'è Open In MPV?

Open In MPV è un'estensione di Chrome sviluppata da Eric Karnes, e la sua funzione principale è "Open videos and audios in MPV.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Open In MPV

Scarica i file di estensione Open In MPV in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Open In MPV Open In MPV
ID epaldpobheocfkfioepkcalnlhlgpcag
URL Ufficiale https://chrome.google.com/webstore/detail/open-in-mpv/epaldpobheocfkfioepkcalnlhlgpcag
Descrizione Open videos and audios in MPV.
Dimensione del File 399 KB
Conteggio Installazioni 181
Versione Corrente 1.01
Ultimo Aggiornamento 2020-11-06
Data di Pubblicazione 2020-10-30
Valutazione 1.00/5 Totale 1 Valutazioni
Sviluppatore Eric Karnes
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/GreyAsteroid/open-in-mpv
URL della Pagina di Aiuto https://github.com/GreyAsteroid/open-in-mpv/issues
Lingue Supportate 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"
    }
}