Sonarr for Plex
View and manage your shows in Sonarr directly in the Plex app
Vad är Sonarr for Plex?
Sonarr for Plex är en Chrome-tillägg utvecklad av danbovey, och dess huvudfunktion är "View and manage your shows in Sonarr directly in the Plex app".
Tilläggsskärmbilder
Ladda ner Sonarr for Plex-förlängningens CRX-fil
Ladda ner Sonarr for Plex-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 Grundläggande Information om Tillägg
| Namn | |
| ID | mhkdnppjenmiejganphkmhdfjnikgnjc |
| Officiell webbadress | https://chromewebstore.google.com/detail/sonarr-for-plex/mhkdnppjenmiejganphkmhdfjnikgnjc |
| Beskrivning | View and manage your shows in Sonarr directly in the Plex app |
| Filstorlek | 68.06 KB |
| Antal Installationer | 536 |
| Aktuell Version | 1.0.6 |
| Senast Uppdaterad | 2018-01-14 |
| Publiceringsdatum | 2018-01-14 |
| Betyg | 2.71/5 Totalt 7 Betyg |
| Utvecklare | danbovey |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/danbovey/SonarrPlex |
| Hjälpsida URL | https://github.com/danbovey/SonarrPlex/issues |
| Stödda Språk | 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
}
} | |