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 |
官方網址 | 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 |
電子郵箱 | [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 } } |