Plexius

Enhancements to the Plex web interface

什麼是Plexius?

Plexius是由Flaviu C開發的Chrome擴展程式,該擴展的主要功能是“Enhancements to the Plex web interface”。

擴展截圖

screenshot
screenshot

下載Plexius擴展crx文件

下載Plexius擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Plexius Plexius
ID cghenlijcboahfbcgiccpnmagdhihiho
官方網址 https://chrome.google.com/webstore/detail/plexius/cghenlijcboahfbcgiccpnmagdhihiho
簡介 Enhancements to the Plex web interface
檔案大小 166 KB
安裝次數 912
目前版本 1.7.1
更新時間 2017-09-21
上架時間 2017-09-21
評分 3.56/5 共 25 次評分
開發者 Flaviu C
付費類型 free
支援的語言 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"
    ]
}