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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "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

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Plexify एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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"
            ]
        }
    ]
}