Radarr and Sonarr for Plex
View and manage your movies and series in Radarr and Sonarr directly in the Plex app
O que é Radarr and Sonarr for Plex?
Radarr and Sonarr for Plex é uma extensão do Chrome desenvolvida por madsengellundt, e sua principal característica é "View and manage your movies and series in Radarr and Sonarr directly in the Plex app".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Radarr and Sonarr for Plex
Baixe arquivos de extensão Radarr and Sonarr for Plex no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
Informações Básicas da Extensão
Nome | Radarr and Sonarr for Plex |
ID | naofhcnmmeadbnonficeccmbfibchcmb |
URL Oficial | https://chromewebstore.google.com/detail/radarr-and-sonarr-for-ple/naofhcnmmeadbnonficeccmbfibchcmb |
Descrição | View and manage your movies and series in Radarr and Sonarr directly in the Plex app |
Tamanho do Arquivo | 743 KB |
Contagem de Instalações | 660 |
Versão Atual | 1.0.2 |
Última Atualização | 2017-06-08 |
Data de Publicação | 2017-06-08 |
Classificação | 2.75/5 Total de 4 Avaliações |
Desenvolvedor | madsengellundt |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/madslundt/RadarrSonarrPlex |
URL da Página de Ajuda | https://github.com/madslundt/RadarrSonarrPlex/issues |
Idiomas Suportados | 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 } } |