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文件
下载Plex to VLC扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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). 扩展基本信息
| 名称 | |
| 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
} | |