Shared Library Downloader for Plex

Add a download button to the Plex Web interface

Shared Library Downloader for Plex क्या है?

Shared Library Downloader for Plex http://jacksbrain.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add a download button to the Plex Web interface"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Shared Library Downloader for Plex एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
        }
    ]
}