Play with MPV

Sends videos in pages like youtube to an external MPV player

Play with MPV क्या है?

Play with MPV Thann द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Sends videos in pages like youtube to an external MPV player"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Play with MPV एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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

एक्सटेंशन की मूल जानकारी

नाम Play with MPV Play with MPV
ID hahklcmnfgffdlchjigehabfbiigleji
आधिकारिक URL https://chromewebstore.google.com/detail/play-with-mpv/hahklcmnfgffdlchjigehabfbiigleji
विवरण Sends videos in pages like youtube to an external MPV player
फ़ाइल का आकार 21.75 KB
स्थापना संख्या 5,795
वर्तमान संस्करण 0.1.0
अंतिम अपडेट 2020-05-01
प्रकाशन तिथि 2020-05-01
रेटिंग 4.32/5 कुल 25 रेटिंग्स
डेवलपर Thann
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/Thann/play-with-mpv
समर्थित भाषाएँ 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
    }
}