Web to Plex
Adds a button on various movie & TV show sites to open it in Plex.
Qu'est-ce que Web to Plex ?
Web to Plex est une extension Chrome développée par Kees Kluskens, et sa fonction principale est "Adds a button on various movie & TV show sites to open it in Plex.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Web to Plex
Téléchargez les fichiers d'extension Web to Plex 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
Adds a button to IMDb, Trakt.tv, Movieo and Letterboxd to immediately open the movie or TV show on Plex Web. If the movie or show doesn't exist on your Plex Media Server, the button will be visually disabled. If you have setup CouchPotato or Radarr in the options (optional), it can add the movie to your media collection with one click. If it's already in CouchPotato/Radarr, it will gently let you know its status (so the movie isn't added twice). Make sure you have at least Plex Media Server v1.4.3 or higher. Before using this extension, you'll need to configure it first. The options page will guide you through how to do it.
Informations de Base sur l'Extension
Nom | Web to Plex |
ID | kmcinnefmnkfnmnmijfmbiaflncfifcn |
URL Officiel | https://chromewebstore.google.com/detail/web-to-plex/kmcinnefmnkfnmnmijfmbiaflncfifcn |
Description | Adds a button on various movie & TV show sites to open it in Plex. |
Taille du Fichier | 178 KB |
Nombre d'Installations | 5,192 |
Version Actuelle | 3.4 |
Dernière Mise à Jour | 2018-05-19 |
Date de Publication | 2018-05-19 |
Évaluation | 3.97/5 Total 30 Évaluations |
Développeur | Kees Kluskens |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/SpaceK33z/web-to-plex |
URL de la Page d'Aide | https://github.com/SpaceK33z/web-to-plex/issues |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Web to Plex", "description": "Adds a button on various movie & TV show sites to open it in Plex.", "manifest_version": 2, "version": "3.4", "icons": { "16": "img\/16.png", "48": "img\/48.png", "128": "img\/128.png" }, "content_scripts": [ { "matches": [ "https:\/\/movieo.me\/*" ], "js": [ "history-hack.js", "utils.js", "movieo.js" ], "css": [ "movieo.css" ] }, { "matches": [ "*:\/\/*.imdb.com\/*" ], "js": [ "utils.js", "imdb.js" ], "css": [ "imdb.css" ] }, { "matches": [ "https:\/\/trakt.tv\/*" ], "js": [ "history-hack.js", "utils.js", "trakt.js" ], "css": [ "trakt.css" ] }, { "matches": [ "https:\/\/letterboxd.com\/film\/*" ], "js": [ "utils.js", "letterboxd.js" ], "css": [ "letterboxd.css" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "options_ui": { "page": "options\/index.html", "chrome_style": true }, "permissions": [ "storage", "https:\/\/*.plex.direct\/*" ], "optional_permissions": [ "http:\/\/*\/", "https:\/\/*\/" ] } |