Plexify

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

Cos'è Plexify?

Plexify è un'estensione di Chrome sviluppata da mariotacke, e la sua funzione principale è "Connect to your Plex account and see if you own media while browsing popular websites like IMDb, Rotten Tomatoes, and more!".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Plexify

Scarica i file di estensione Plexify in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Plexify Plexify
ID cgckffknepmgikkhnildjodfjobncckg
URL Ufficiale https://chromewebstore.google.com/detail/plexify/cgckffknepmgikkhnildjodfjobncckg
Descrizione Connect to your Plex account and see if you own media while browsing popular websites like IMDb, Rotten Tomatoes, and more!
Dimensione del File 30.13 KB
Conteggio Installazioni 743
Versione Corrente 0.0.1
Ultimo Aggiornamento 2016-05-14
Data di Pubblicazione 2016-05-13
Valutazione 4.00/5 Totale 3 Valutazioni
Sviluppatore mariotacke
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/mariotacke/plexify
Lingue Supportate 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"
            ]
        }
    ]
}