ff2mpv
Tries to play links in MPV
ff2mpv란 무엇입니까?
ff2mpv은(는) ff2mpv에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Tries to play links in MPV"입니다.
확장 프로그램 스크린샷
ff2mpv 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The extension will try to open a URL in MPV. Click on the icon on the toolbar to attempt playing the tab's URL or open the context menu on a link and click MPV's icon. Please read the instructions to set it up here: https://github.com/woodruffw/ff2mpv Prior to version 4.0.0, this extension was a fork of Firefox's ff2mpv. On versions 4.0.0 and later, this extension has been unified with the original Firefox extension and now shares the same codebase.
확장 프로그램 기본 정보
이름 | ff2mpv |
ID | ephjcajbkgplkjmelpglennepbpmdpjg |
공식 URL | https://chromewebstore.google.com/detail/ff2mpv/ephjcajbkgplkjmelpglennepbpmdpjg |
설명 | Tries to play links in MPV |
파일 크기 | 314 KB |
설치 횟수 | 733 |
현재 버전 | 5.1.1 |
최근 업데이트 | 2024-02-18 |
출시 날짜 | 2021-07-24 |
평점 | 3.67/5 총 3 개의 평점 |
개발자 | ff2mpv |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/woodruffw/ff2mpv |
도움말 페이지 URL | https://github.com/woodruffw/ff2mpv/issues/new/choose |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Tries to play links in MPV", "manifest_version": 2, "name": "ff2mpv", "version": "5.1.1", "options_ui": { "page": "options\/options.html", "open_in_tab": false }, "icons": { "16": "icons\/icon_16x16.png", "32": "icons\/icon_32x32.png", "48": "icons\/icon_48x48.png", "64": "icons\/icon_64x64.png", "256": "icons\/icon_256x256.png" }, "browser_action": { "default_icon": "icons\/icon_48x48.png", "default_title": "Play the current URL in MPV" }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+V" }, "description": "Play the current URL in mpv" } }, "applications": { "gecko": { "id": "[email protected]", "strict_min_version": "50.0" } }, "background": { "scripts": [ "browser-polyfill.js", "ff2mpv.js" ] }, "permissions": [ "nativeMessaging", "contextMenus", "activeTab", "storage" ] } |