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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
확장 프로그램 기본 정보
이름 | 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 } } |