Plexify

Connect to your Plex account and see if you own media while browsing popular websites like IMDb, Rotten Tomatoes, and more!

什麼是Plexify?

Plexify是由mariotacke開發的Chrome擴展程式,該擴展的主要功能是“Connect to your Plex account and see if you own media while browsing popular websites like IMDb, Rotten Tomatoes, and more!”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Plexify擴展crx文件

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

擴展使用說明

                        Plexify lets you connect to your Plex account to check if your
library contains certain media while browsing popular websites like
IMDb, Rotten Tomatoes, and more! To indicate that your library contains the media, Plexify adds a small, non-intrusive badge to the page. 

A must have for movie collectors and enthusiasts alike!                    

擴展基本資訊

名稱 Plexify Plexify
ID cgckffknepmgikkhnildjodfjobncckg
官方網址 https://chromewebstore.google.com/detail/plexify/cgckffknepmgikkhnildjodfjobncckg
簡介 Connect to your Plex account and see if you own media while browsing popular websites like IMDb, Rotten Tomatoes, and more!
檔案大小 30.13 KB
安裝次數 743
目前版本 0.0.1
更新時間 2016-05-14
上架時間 2016-05-13
評分 4.00/5 共 3 次評分
開發者 mariotacke
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/mariotacke/plexify
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "homepage_url": "https:\/\/github.com\/mariotacke",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/background\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "__MSG_appName__",
        "default_popup": "src\/popup\/index.html"
    },
    "permissions": [
        "https:\/\/plex.tv\/users\/sign_in.xml",
        "https:\/\/plex.tv\/pms\/servers.xml"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.imdb.com\/title\/*"
            ],
            "js": [
                "src\/plugins\/imdb\/index.js"
            ]
        },
        {
            "matches": [
                "http:\/\/www.rottentomatoes.com\/m\/*"
            ],
            "js": [
                "src\/plugins\/rottentomatoes\/index.js"
            ]
        }
    ]
}