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 là gì?

Radarr and Sonarr for Plex là một tiện ích mở rộng Chrome được phát triển bởi madsengellundt, và tính năng chính của nó là "View and manage your movies and series in Radarr and 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 Radarr and Sonarr for Plex

Tải xuống các tệp mở rộng Radarr and 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

                                            

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

Tên Radarr and Sonarr for Plex Radarr and Sonarr for Plex
ID naofhcnmmeadbnonficeccmbfibchcmb
URL Chính Thức https://chromewebstore.google.com/detail/radarr-and-sonarr-for-ple/naofhcnmmeadbnonficeccmbfibchcmb
Mô tả View and manage your movies and series in Radarr and Sonarr directly in the Plex app
Kích Thước Tệp 743 KB
Số Lần Cài Đặt 660
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2017-06-08
Ngày Phát Hành 2017-06-08
Đánh Giá 2.75/5 Tổng số 4 Đánh Giá
Nhà Phát Triển madsengellundt
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/madslundt/RadarrSonarrPlex
URL Trang Trợ Giúp https://github.com/madslundt/RadarrSonarrPlex/issues
Ngôn Ngữ Được Hỗ Trợ 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
    }
}