Plexius
Enhancements to the Plex web interface
Wat is Plexius?
Plexius is een Chrome-extensie ontwikkeld door Flaviu C, en de belangrijkste functie is "Enhancements to the Plex web interface".
Extensie Screenshots
Download het CRX-bestand van de extensie Plexius
Download Plexius-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | |
ID | cghenlijcboahfbcgiccpnmagdhihiho |
Officiële URL | https://chrome.google.com/webstore/detail/plexius/cghenlijcboahfbcgiccpnmagdhihiho |
Beschrijving | Enhancements to the Plex web interface |
Bestandsgrootte | 166 KB |
Aantal Installaties | 912 |
Huidige Versie | 1.7.1 |
Laatst Bijgewerkt | 2017-09-21 |
Publicatiedatum | 2017-09-21 |
Beoordeling | 3.56/5 Totaal 25 Beoordelingen |
Ontwikkelaar | Flaviu C |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |