Plexify

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

Hvad er Plexify?

Plexify er en Chrome-udvidelse udviklet af mariotacke, og dens hovedfunktion er "Connect to your Plex account and see if you own media while browsing popular websites like IMDb, Rotten Tomatoes, and more!".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot

Download Plexify-udvidelses-CRX-fil

Download Plexify-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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!                    

Grundlæggende oplysninger om udvidelsen

Navn Plexify Plexify
ID cgckffknepmgikkhnildjodfjobncckg
Officiel URL https://chromewebstore.google.com/detail/plexify/cgckffknepmgikkhnildjodfjobncckg
Beskrivelse Connect to your Plex account and see if you own media while browsing popular websites like IMDb, Rotten Tomatoes, and more!
Filstørrelse 30.13 KB
Antal Installationer 743
Nuværende Version 0.0.1
Senest Opdateret 2016-05-14
Udgivelsesdato 2016-05-13
Bedømmelse 4.00/5 Samlet 3 Bedømmelser
Udvikler mariotacke
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/mariotacke/plexify
Understøttede Sprog 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"
            ]
        }
    ]
}