Plexify

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

Was ist Plexify?

Plexify ist eine Chrome-Erweiterung, die von mariotacke entwickelt wurde, und ihr Hauptmerkmal ist "Connect to your Plex account and see if you own media while browsing popular websites like IMDb, Rotten Tomatoes, and more!".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Plexify-Erweiterungs-CRX-Datei herunterladen

Laden Sie Plexify-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name Plexify Plexify
ID cgckffknepmgikkhnildjodfjobncckg
Offizielle URL https://chromewebstore.google.com/detail/plexify/cgckffknepmgikkhnildjodfjobncckg
Beschreibung Connect to your Plex account and see if you own media while browsing popular websites like IMDb, Rotten Tomatoes, and more!
Dateigröße 30.13 KB
Installationsanzahl 743
Aktuelle Version 0.0.1
Letztes Update 2016-05-14
Veröffentlichungsdatum 2016-05-13
Bewertung 4.00/5 Insgesamt 3 Bewertungen
Entwickler mariotacke
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/mariotacke/plexify
Unterstützte Sprachen 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"
            ]
        }
    ]
}