Plexius

Enhancements to the Plex web interface

Plexius란 무엇입니까?

Plexius은(는) Flaviu C에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enhancements to the Plex web interface"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Plexius 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
    ]
}