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
公式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
Eメール [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
        }
    ]
}