Plexify

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

Qu'est-ce que Plexify ?

Plexify est une extension Chrome développée par mariotacke, et sa fonction principale est "Connect to your Plex account and see if you own media while browsing popular websites like IMDb, Rotten Tomatoes, and more!".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Plexify

Téléchargez les fichiers d'extension Plexify au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom Plexify Plexify
ID cgckffknepmgikkhnildjodfjobncckg
URL Officiel https://chromewebstore.google.com/detail/plexify/cgckffknepmgikkhnildjodfjobncckg
Description Connect to your Plex account and see if you own media while browsing popular websites like IMDb, Rotten Tomatoes, and more!
Taille du Fichier 30.13 KB
Nombre d'Installations 743
Version Actuelle 0.0.1
Dernière Mise à Jour 2016-05-14
Date de Publication 2016-05-13
Évaluation 4.00/5 Total 3 Évaluations
Développeur mariotacke
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/mariotacke/plexify
Langues Prises en Charge 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"
            ]
        }
    ]
}