Shared Library Downloader for Plex

Add a download button to the Plex Web interface

Shared Library Downloader for Plexคืออะไร?

Shared Library Downloader for Plex เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://jacksbrain.com และคุณลักษณะหลักของมันคือ "Add a download button to the Plex Web interface"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Shared Library Downloader for Plex

ดาวน์โหลดไฟล์ส่วนขยาย Shared Library Downloader for Plex ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Shared Library Downloader for Plex Shared Library Downloader for Plex
ID jdlidamgkbjkdogfgelbkkmdaehmeglp
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/shared-library-downloader/jdlidamgkbjkdogfgelbkkmdaehmeglp
คำอธิบาย Add a download button to the Plex Web interface
ขนาดไฟล์ 69.84 KB
จำนวนการติดตั้ง 2,795
เวอร์ชันปัจจุบัน 0.1.5
อัปเดตครั้งล่าสุด 2022-10-04
วันที่เผยแพร่ 2020-04-13
คะแนน 2.89/5 รวมทั้งหมด 27 คะแนน
ผู้พัฒนา http://jacksbrain.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/jkingsman/plex-shared-library-downloader
URL หน้าช่วยเหลือ https://github.com/jkingsman/plex-shared-library-downloader/issues
ภาษาที่รองรับ 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
        }
    ]
}