Web to Plex

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

Web to Plex란 무엇입니까?

Web to Plex은(는) Kees Kluskens에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a button on various movie & TV show sites to open it in Plex."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Web to Plex 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Web to Plex Web to Plex
ID kmcinnefmnkfnmnmijfmbiaflncfifcn
공식 URL https://chromewebstore.google.com/detail/web-to-plex/kmcinnefmnkfnmnmijfmbiaflncfifcn
설명 Adds a button on various movie & TV show sites to open it in Plex.
파일 크기 178 KB
설치 횟수 5,192
현재 버전 3.4
최근 업데이트 2018-05-19
출시 날짜 2018-05-19
평점 3.97/5 총 30 개의 평점
개발자 Kees Kluskens
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/SpaceK33z/web-to-plex
도움말 페이지 URL https://github.com/SpaceK33z/web-to-plex/issues
지원되는 언어 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:\/\/*\/"
    ]
}