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開發的Chrome擴展程式,該擴展的主要功能是“Add a download button to the Plex Web interface”。

擴展截圖

screenshot

下載Shared Library Downloader for Plex擴展crx文件

下載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
官方網址 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
        }
    ]
}