Sonarr for Plex
View and manage your shows in Sonarr directly in the Plex app
Sonarr for Plexとは何ですか?
Sonarr for Plexはdanboveyによって開発されたChromeの拡張機能で、その主な機能は「View and manage your shows in Sonarr directly in the Plex app」です。
拡張機能のスクリーンショット
Sonarr for Plex拡張機能のCRXファイルをダウンロード
Sonarr for Plex拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
View and manage your shows in Sonarr directly in the Plex app. - Adds a button to the top navbar to open Sonarr - View and add new shows, update your library within Plex - View active downloads and activity
拡張機能の基本情報
名前 | Sonarr for Plex |
ID | mhkdnppjenmiejganphkmhdfjnikgnjc |
公式URL | https://chromewebstore.google.com/detail/sonarr-for-plex/mhkdnppjenmiejganphkmhdfjnikgnjc |
説明 | View and manage your shows in Sonarr directly in the Plex app |
ファイルサイズ | 68.06 KB |
インストール数 | 536 |
現在のバージョン | 1.0.6 |
最終更新日 | 2018-01-14 |
公開日 | 2018-01-14 |
評価 | 2.71/5 合計 7 レビュー |
開発者 | danbovey |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/danbovey/SonarrPlex |
ヘルプページのURL | https://github.com/danbovey/SonarrPlex/issues |
対応言語 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Sonarr for Plex", "short_name": "Sonarr", "description": "View and manage your shows in Sonarr directly in the Plex app", "author": "Dan Bovey", "version": "1.0.6", "minimum_chrome_version": "36", "permissions": [ "storage", "background", "*:\/\/app.plex.tv\/*", "*:\/\/*\/" ], "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "content_scripts": [ { "css": [ "css\/style.css" ], "js": [ "js\/content.js" ], "matches": [ "http:\/\/app.plex.tv\/*", "https:\/\/app.plex.tv\/*" ] } ], "web_accessible_resources": [ "img\/Sonarr.svg" ], "options_ui": { "page": "options.html", "chrome_style": true } } |