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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย doubleyoustew และคุณลักษณะหลักของมันคือ "This extension adds a "VLC" button to the Plex Web Player interface. Only supports macOS and needs a companion application."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Plex to VLC

ดาวน์โหลดไฟล์ส่วนขยาย 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).                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Plex to VLC 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
}