Play with MPV

Sends videos in pages like youtube to an external MPV player

Qu'est-ce que Play with MPV ?

Play with MPV est une extension Chrome développée par Thann, et sa fonction principale est "Sends videos in pages like youtube to an external MPV player".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Play with MPV

Téléchargez les fichiers d'extension Play with MPV au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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/`                    

Informations de Base sur l'Extension

Nom Play with MPV Play with MPV
ID hahklcmnfgffdlchjigehabfbiigleji
URL Officiel https://chromewebstore.google.com/detail/play-with-mpv/hahklcmnfgffdlchjigehabfbiigleji
Description Sends videos in pages like youtube to an external MPV player
Taille du Fichier 21.75 KB
Nombre d'Installations 5,795
Version Actuelle 0.1.0
Dernière Mise à Jour 2020-05-01
Date de Publication 2020-05-01
Évaluation 4.32/5 Total 25 Évaluations
Développeur Thann
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/Thann/play-with-mpv
Langues Prises en Charge 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
    }
}