Plex to VLC
This extension adds a "VLC" button to the Plex Web Player interface. Only supports macOS and needs a companion application.
Plex to VLC란 무엇입니까?
Plex to VLC은(는) doubleyoustew에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension adds a "VLC" button to the Plex Web Player interface. Only supports macOS and needs a companion application."입니다.
확장 프로그램 스크린샷
Plex to VLC 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension adds a button to the Plex interface that allows you to open the file in an external video app of your choice: - Set your favourite video Player (System Default, VLC, IINA, etc.) - Option to mark videos as played once you open them (requires a page refresh to see the change, but it saves immediately). Note: - This app only works on macOS! There are other chrome extensions that do the same thing on Windows and Linux. - You'll need the companion app that opens the the video player. The extension should prompt you to download it. You can also find it on the extensions website (github).
확장 프로그램 기본 정보
이름 | Plex to VLC |
ID | admjkihehbkklbidlcpmjcaplbkngeed |
공식 URL | https://chromewebstore.google.com/detail/plex-to-vlc/admjkihehbkklbidlcpmjcaplbkngeed |
설명 | This extension adds a "VLC" button to the Plex Web Player interface. Only supports macOS and needs a companion application. |
파일 크기 | 395 KB |
설치 횟수 | 1,315 |
현재 버전 | 1.3.1 |
최근 업데이트 | 2021-07-15 |
출시 날짜 | 2020-02-21 |
개발자 | doubleyoustew |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/soerenkampschroer/plex-to-vlc |
도움말 페이지 URL | https://github.com/soerenkampschroer/plex-to-vlc |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Plex to VLC", "version": "1.3.1", "description": "This extension adds a \"VLC\" button to the Plex Web Player interface. Only supports macOS and needs a companion application.", "icons": { "16": "icons\/fullscreen-16.png", "48": "icons\/fullscreen-48.png", "128": "icons\/fullscreen-128.png" }, "background": { "scripts": [ "background\/scripts\/dist\/background-script.bundle.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/127.0.0.1:32400\/web\/index.html*" ], "js": [ "content\/scripts\/dist\/content-script.bundle.js", "content\/scripts\/vendor\/toastify-js.min.js" ], "css": [ "content\/css\/toastify.min.css", "content\/css\/style.css" ] } ], "permissions": [ "nativeMessaging", "storage", "http:\/\/127.0.0.1:32400\/web\/index.html*" ], "browser_action": { "default_name": "Plex to VLC", "default_icon": "icons\/fullscreen-48.png", "default_popup": "options\/options.html" }, "manifest_version": 2 } |