Plexius

Enhancements to the Plex web interface

Plexius là gì?

Plexius là một tiện ích mở rộng Chrome được phát triển bởi Flaviu C, và tính năng chính của nó là "Enhancements to the Plex web interface".

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

screenshot
screenshot

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

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

                        A small extension which provides IMDB ratings into the Plex movie library for the new 3.0 Plex Web.

changelog: https://github.com/campanflaviu/plexius/releases

Project available at https://github.com/campanflaviu/plexius                    

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

Tên Plexius Plexius
ID cghenlijcboahfbcgiccpnmagdhihiho
URL Chính Thức https://chrome.google.com/webstore/detail/plexius/cghenlijcboahfbcgiccpnmagdhihiho
Mô tả Enhancements to the Plex web interface
Kích Thước Tệp 166 KB
Số Lần Cài Đặt 912
Phiên Bản Hiện Tại 1.7.1
Cập Nhật Lần Cuối 2017-09-21
Ngày Phát Hành 2017-09-21
Đánh Giá 3.56/5 Tổng số 25 Đánh Giá
Nhà Phát Triển Flaviu C
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Plexius",
    "description": "Enhancements to the Plex web interface",
    "version": "1.7.1",
    "browser_action": {
        "default_icon": "assets\/icon.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "css": [
                "styles.css",
                "styles\/stats.css"
            ],
            "js": [
                "js\/libraries\/jquery-3.1.1.min.js",
                "js\/promise.min.js",
                "js\/arrive.min.js",
                "js\/constants.js",
                "js\/helpers.js",
                "js\/apis\/plex.js",
                "js\/apis\/omdb.js",
                "js\/apis\/trakt.js",
                "js\/plugins\/missingEpisodes.js",
                "js\/plugins\/stats.js",
                "js\/content.js"
            ],
            "matches": [
                "*:\/\/*\/web\/*",
                "*:\/\/*\/desktop*"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage",
        "activeTab"
    ],
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "web_accessible_resources": [
        "assets\/*",
        "options.html",
        "stats.html"
    ]
}