Radarr and Sonarr for Plex
View and manage your movies and series in Radarr and Sonarr directly in the Plex app
Wat is Radarr and Sonarr for Plex?
Radarr and Sonarr for Plex is een Chrome-extensie ontwikkeld door madsengellundt, en de belangrijkste functie is "View and manage your movies and series in Radarr and Sonarr directly in the Plex app".
Extensie Screenshots
Download het CRX-bestand van de extensie Radarr and Sonarr for Plex
Download Radarr and Sonarr for Plex-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
Basisinformatie over de Extensie
Naam | Radarr and Sonarr for Plex |
ID | naofhcnmmeadbnonficeccmbfibchcmb |
Officiële URL | https://chromewebstore.google.com/detail/radarr-and-sonarr-for-ple/naofhcnmmeadbnonficeccmbfibchcmb |
Beschrijving | View and manage your movies and series in Radarr and Sonarr directly in the Plex app |
Bestandsgrootte | 743 KB |
Aantal Installaties | 660 |
Huidige Versie | 1.0.2 |
Laatst Bijgewerkt | 2017-06-08 |
Publicatiedatum | 2017-06-08 |
Beoordeling | 2.75/5 Totaal 4 Beoordelingen |
Ontwikkelaar | madsengellundt |
Betalingswijze | free |
Extensiewebsite | https://github.com/madslundt/RadarrSonarrPlex |
Help Pagina-URL | https://github.com/madslundt/RadarrSonarrPlex/issues |
Ondersteunde Talen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Radarr and Sonarr for Plex", "short_name": "RadarrSonarr", "description": "View and manage your movies and series in Radarr and Sonarr directly in the Plex app", "author": "Mads Engel Lundt", "version": "1.0.2", "minimum_chrome_version": "36", "permissions": [ "storage", "background", "*:\/\/app.plex.tv\/*", "*:\/\/*\/" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "content_scripts": [ { "js": [ "index.js" ], "matches": [ "http:\/\/app.plex.tv\/*", "https:\/\/app.plex.tv\/*" ] } ], "web_accessible_resources": [ "img\/icon256_grayscaled.png" ], "options_ui": { "page": "options.html", "chrome_style": true } } |