Shared Library Downloader for Plex

Shared Library Downloader for Plex

Add a download button to the Plex Web interface

Merlin
Additional files are visible only to premium users

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 <[email protected]>",
  "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
    }
  ]
}