Sonarr for Plex

View and manage your shows in Sonarr directly in the Plex app

Sonarr for Plex là gì?

Sonarr for Plex là một tiện ích mở rộng Chrome được phát triển bởi danbovey, và tính năng chính của nó là "View and manage your shows in Sonarr directly in the Plex app".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Sonarr for Plex

Tải xuống các tệp mở rộng Sonarr for Plex dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Sonarr for Plex Sonarr for Plex
ID mhkdnppjenmiejganphkmhdfjnikgnjc
URL Chính Thức https://chromewebstore.google.com/detail/sonarr-for-plex/mhkdnppjenmiejganphkmhdfjnikgnjc
Mô tả View and manage your shows in Sonarr directly in the Plex app
Kích Thước Tệp 68.06 KB
Số Lần Cài Đặt 536
Phiên Bản Hiện Tại 1.0.6
Cập Nhật Lần Cuối 2018-01-14
Ngày Phát Hành 2018-01-14
Đánh Giá 2.71/5 Tổng số 7 Đánh Giá
Nhà Phát Triển danbovey
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/danbovey/SonarrPlex
URL Trang Trợ Giúp https://github.com/danbovey/SonarrPlex/issues
Ngôn Ngữ Được Hỗ Trợ 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
    }
}