Shared Library Downloader for Plex

Add a download button to the Plex Web interface

O que é Shared Library Downloader for Plex?

Shared Library Downloader for Plex é uma extensão do Chrome desenvolvida por http://jacksbrain.com, e sua principal característica é "Add a download button to the Plex Web interface".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Shared Library Downloader for Plex

Baixe arquivos de extensão Shared Library Downloader for Plex no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Shared Library Downloader for Plex Shared Library Downloader for Plex
ID jdlidamgkbjkdogfgelbkkmdaehmeglp
URL Oficial https://chrome.google.com/webstore/detail/shared-library-downloader/jdlidamgkbjkdogfgelbkkmdaehmeglp
Descrição Add a download button to the Plex Web interface
Tamanho do Arquivo 69.84 KB
Contagem de Instalações 2,795
Versão Atual 0.1.5
Última Atualização 2022-10-04
Data de Publicação 2020-04-13
Classificação 2.89/5 Total de 27 Avaliações
Desenvolvedor http://jacksbrain.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/jkingsman/plex-shared-library-downloader
URL da Página de Ajuda https://github.com/jkingsman/plex-shared-library-downloader/issues
Idiomas Suportados 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
        }
    ]
}