Shared Library Downloader for Plex

Add a download button to the Plex Web interface

Shared Library Downloader for Plex là gì?

Shared Library Downloader for Plex là một tiện ích mở rộng Chrome được phát triển bởi http://jacksbrain.com, và tính năng chính của nó là "Add a download button to the Plex Web interface".

Ả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 Shared Library Downloader for Plex

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

                        This extension adds a download icon to the Plex web interface for all media, including media from a shared library. Note that this only works on video media and not on music or other media, although the icon may still appear.

This is a wrapper/injector for Pip Longrun's code: https://piplong.run/plxdwnld/.

This is MIT licensed; contribute at https://github.com/jkingsman/plex-shared-library-downloader                    

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

Tên Shared Library Downloader for Plex Shared Library Downloader for Plex
ID jdlidamgkbjkdogfgelbkkmdaehmeglp
URL Chính Thức https://chrome.google.com/webstore/detail/shared-library-downloader/jdlidamgkbjkdogfgelbkkmdaehmeglp
Mô tả Add a download button to the Plex Web interface
Kích Thước Tệp 69.84 KB
Số Lần Cài Đặt 2,795
Phiên Bản Hiện Tại 0.1.5
Cập Nhật Lần Cuối 2022-10-04
Ngày Phát Hành 2020-04-13
Đánh Giá 2.89/5 Tổng số 27 Đánh Giá
Nhà Phát Triển http://jacksbrain.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/jkingsman/plex-shared-library-downloader
URL Trang Trợ Giúp https://github.com/jkingsman/plex-shared-library-downloader/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Shared Library Downloader for Plex",
    "short_name": "Plex Downloader",
    "version": "0.1.5",
    "description": "Add a download button to the Plex Web interface",
    "action": {
        "default_title": "Downloader for Plex",
        "default_icon": {
            "8": "img\/logo8.png",
            "16": "img\/logo16.png",
            "19": "img\/logo19.png",
            "24": "img\/logo24.png",
            "32": "img\/logo32.png",
            "64": "img\/logo64.png",
            "128": "img\/logo128.png",
            "256": "img\/logo256.png",
            "512": "img\/logo512.png"
        }
    },
    "author": "Jack Kingsman ",
    "icons": {
        "8": "img\/logo8.png",
        "16": "img\/logo16.png",
        "19": "img\/logo19.png",
        "24": "img\/logo24.png",
        "32": "img\/logo32.png",
        "64": "img\/logo64.png",
        "128": "img\/logo128.png",
        "256": "img\/logo256.png",
        "512": "img\/logo512.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.plex.tv\/*"
            ],
            "js": [
                "js\/download_script.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ]
}