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文件

下载Web to Plex扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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:\/\/*\/"
    ]
}