Web to Plex

Adds a button on various movie & TV show sites to open it in Plex.

Web to Plex là gì?

Web to Plex là một tiện ích mở rộng Chrome được phát triển bởi Kees Kluskens, và tính năng chính của nó là "Adds a button on various movie & TV show sites to open it in Plex.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Web to Plex

Tải xuống các tệp mở rộng Web to Plex dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Adds a button to IMDb, Trakt.tv, Movieo and Letterboxd to immediately open the movie or TV show on Plex Web.

If the movie or show doesn't exist on your Plex Media Server, the button will be visually disabled. If you have setup CouchPotato or Radarr in the options (optional), it can add the movie to your media collection with one click. If it's already in CouchPotato/Radarr, it will gently let you know its status (so the movie isn't added twice).

Make sure you have at least Plex Media Server v1.4.3 or higher.

Before using this extension, you'll need to configure it first. The options page will guide you through how to do it.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Web to Plex Web to Plex
ID kmcinnefmnkfnmnmijfmbiaflncfifcn
URL Chính Thức https://chromewebstore.google.com/detail/web-to-plex/kmcinnefmnkfnmnmijfmbiaflncfifcn
Mô tả Adds a button on various movie & TV show sites to open it in Plex.
Kích Thước Tệp 178 KB
Số Lần Cài Đặt 5,192
Phiên Bản Hiện Tại 3.4
Cập Nhật Lần Cuối 2018-05-19
Ngày Phát Hành 2018-05-19
Đánh Giá 3.97/5 Tổng số 30 Đánh Giá
Nhà Phát Triển Kees Kluskens
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/SpaceK33z/web-to-plex
URL Trang Trợ Giúp https://github.com/SpaceK33z/web-to-plex/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Web to Plex",
    "description": "Adds a button on various movie & TV show sites to open it in Plex.",
    "manifest_version": 2,
    "version": "3.4",
    "icons": {
        "16": "img\/16.png",
        "48": "img\/48.png",
        "128": "img\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/movieo.me\/*"
            ],
            "js": [
                "history-hack.js",
                "utils.js",
                "movieo.js"
            ],
            "css": [
                "movieo.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.imdb.com\/*"
            ],
            "js": [
                "utils.js",
                "imdb.js"
            ],
            "css": [
                "imdb.css"
            ]
        },
        {
            "matches": [
                "https:\/\/trakt.tv\/*"
            ],
            "js": [
                "history-hack.js",
                "utils.js",
                "trakt.js"
            ],
            "css": [
                "trakt.css"
            ]
        },
        {
            "matches": [
                "https:\/\/letterboxd.com\/film\/*"
            ],
            "js": [
                "utils.js",
                "letterboxd.js"
            ],
            "css": [
                "letterboxd.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "options\/index.html",
        "chrome_style": true
    },
    "permissions": [
        "storage",
        "https:\/\/*.plex.direct\/*"
    ],
    "optional_permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/"
    ]
}