Enhanced Plex

Adds several features to the Plex/Web client for Plex

Enhanced Plex là gì?

Enhanced Plex là một tiện ích mở rộng Chrome được phát triển bởi Balthier, và tính năng chính của nó là "Adds several features to the Plex/Web client for 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 Enhanced Plex

Tải xuống các tệp mở rộng Enhanced 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

                        This extension provides the following to the Plex for Web interface:

Adds link to view the TheMovieDB page for movies
Adds link to view the TVDB page for tv shows
Adds link to view the Trakt.tv page for movies and tv shows
Adds link to view the IMDB page for movies and tv shows
Adds a missing seasons and episodes view
Adds a server statistics page
Adds a bunch of information on TV/Movie pages (E.g. Status, Runtime, Homepage, Trailer Link, etc.)
Can also connect to a Sonarr/Radarr installation (Requires a fully configured Sonarr/Radarr server)

Note: Requires access to a fully configured Plex Server, and a Plex Account

Full Change Log:
https://github.com/Balthier/Enhanced-Plex/blob/master/changelog.md                    

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

Tên Enhanced Plex Enhanced Plex
ID kjmpdmgijjacblfohigcnpkeaehalmai
URL Chính Thức https://chromewebstore.google.com/detail/enhanced-plex/kjmpdmgijjacblfohigcnpkeaehalmai
Mô tả Adds several features to the Plex/Web client for Plex
Kích Thước Tệp 321 KB
Số Lần Cài Đặt 483
Phiên Bản Hiện Tại 3.3.0
Cập Nhật Lần Cuối 2024-03-05
Ngày Phát Hành 2021-02-01
Đánh Giá 4.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Balthier
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Balthier/Enhanced-Plex
URL Trang Trợ Giúp https://github.com/Balthier/Enhanced-Plex/issues
Ngôn Ngữ Được Hỗ Trợ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Enhanced Plex",
    "description": "Adds several features to the Plex\/Web client for Plex",
    "version": "3.3.0",
    "options_page": "resources\/extras\/options.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/app.plex.tv\/desktop*",
                "http:\/\/127.0.0.1:32400\/web*",
                "http:\/\/localhost:32400\/web*"
            ],
            "run_at": "document_idle",
            "css": [
                "css\/enhancedplex.css"
            ],
            "js": [
                "js\/utils.js",
                "js\/plugins.js",
                "apis\/trakt_api.js",
                "apis\/tmdb_api.js",
                "apis\/sonarr_api.js",
                "apis\/radarr_api.js",
                "apis\/google_api.js",
                "plugins\/imdb.js",
                "plugins\/missing_episodes.js",
                "plugins\/stats.js",
                "plugins\/tmdb.js",
                "plugins\/trakt.js",
                "plugins\/tvdb.js",
                "plugins\/sonarr.js",
                "plugins\/radarr.js",
                "js\/main.js"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/service_worker.js"
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "resources\/icon16.png",
        "48": "resources\/icon48.png",
        "128": "resources\/icon128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "resources\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}