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 } } |