Play with MPV

Sends videos in pages like youtube to an external MPV player

什么是Play with MPV?

Play with MPV是由Thann开发的Chrome扩展程序,该扩展的主要功能是“Sends videos in pages like youtube to an external MPV player”。

扩展截图

screenshot

下载Play with MPV扩展crx文件

下载Play with MPV扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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
    }
}