Radarr and Sonarr for Plex
View and manage your movies and series in Radarr and Sonarr directly in the Plex app
什么是Radarr and Sonarr for Plex?
Radarr and Sonarr for Plex是由madsengellundt开发的Chrome扩展程序,该扩展的主要功能是“View and manage your movies and series in Radarr and Sonarr directly in the Plex app”。
扩展截图
下载Radarr and Sonarr for Plex扩展crx文件
下载Radarr and Sonarr for Plex扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
名称 | Radarr and Sonarr for Plex |
ID | naofhcnmmeadbnonficeccmbfibchcmb |
官方URL | https://chromewebstore.google.com/detail/radarr-and-sonarr-for-ple/naofhcnmmeadbnonficeccmbfibchcmb |
简介 | View and manage your movies and series in Radarr and Sonarr directly in the Plex app |
文件大小 | 743 KB |
安装次数 | 660 |
当前版本 | 1.0.2 |
更新时间 | 2017-06-08 |
上架时间 | 2017-06-08 |
评分 | 2.75/5 共4次评分 |
开发者 | madsengellundt |
付费类型 | free |
扩展官网 | https://github.com/madslundt/RadarrSonarrPlex |
帮助页面URL | https://github.com/madslundt/RadarrSonarrPlex/issues |
支持的语言 | 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 } } |