Plexius

Enhancements to the Plex web interface

Qu'est-ce que Plexius ?

Plexius est une extension Chrome développée par Flaviu C, et sa fonction principale est "Enhancements to the Plex web interface".

Captures d'Écran de l'Extension

screenshot
screenshot

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

Téléchargez les fichiers d'extension Plexius 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

                        A small extension which provides IMDB ratings into the Plex movie library for the new 3.0 Plex Web.

changelog: https://github.com/campanflaviu/plexius/releases

Project available at https://github.com/campanflaviu/plexius                    

Informations de Base sur l'Extension

Nom Plexius Plexius
ID cghenlijcboahfbcgiccpnmagdhihiho
URL Officiel https://chrome.google.com/webstore/detail/plexius/cghenlijcboahfbcgiccpnmagdhihiho
Description Enhancements to the Plex web interface
Taille du Fichier 166 KB
Nombre d'Installations 912
Version Actuelle 1.7.1
Dernière Mise à Jour 2017-09-21
Date de Publication 2017-09-21
Évaluation 3.56/5 Total 25 Évaluations
Développeur Flaviu C
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Plexius",
    "description": "Enhancements to the Plex web interface",
    "version": "1.7.1",
    "browser_action": {
        "default_icon": "assets\/icon.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "css": [
                "styles.css",
                "styles\/stats.css"
            ],
            "js": [
                "js\/libraries\/jquery-3.1.1.min.js",
                "js\/promise.min.js",
                "js\/arrive.min.js",
                "js\/constants.js",
                "js\/helpers.js",
                "js\/apis\/plex.js",
                "js\/apis\/omdb.js",
                "js\/apis\/trakt.js",
                "js\/plugins\/missingEpisodes.js",
                "js\/plugins\/stats.js",
                "js\/content.js"
            ],
            "matches": [
                "*:\/\/*\/web\/*",
                "*:\/\/*\/desktop*"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage",
        "activeTab"
    ],
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "web_accessible_resources": [
        "assets\/*",
        "options.html",
        "stats.html"
    ]
}