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"입니다.
확장 프로그램 스크린샷
Play with MPV 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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 } } |