Play with MPV

Sends videos in pages like youtube to an external MPV player

Play with MPV là gì?

Play with MPV là một tiện ích mở rộng Chrome được phát triển bởi Thann, và tính năng chính của nó là "Sends videos in pages like youtube to an external MPV player".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Play with MPV

Tải xuống các tệp mở rộng Play with MPV dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Play with MPV Play with MPV
ID hahklcmnfgffdlchjigehabfbiigleji
URL Chính Thức https://chromewebstore.google.com/detail/play-with-mpv/hahklcmnfgffdlchjigehabfbiigleji
Mô tả Sends videos in pages like youtube to an external MPV player
Kích Thước Tệp 21.75 KB
Số Lần Cài Đặt 5,795
Phiên Bản Hiện Tại 0.1.0
Cập Nhật Lần Cuối 2020-05-01
Ngày Phát Hành 2020-05-01
Đánh Giá 4.32/5 Tổng số 25 Đánh Giá
Nhà Phát Triển Thann
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Thann/play-with-mpv
Ngôn Ngữ Được Hỗ Trợ 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
    }
}