Plex bulk downloader

Plex bulk downloader

A Chrome extension to assist with downloading multiple files from a Plex server

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Plex bulk downloader",
  "description": "A Chrome extension to assist with downloading multiple files from a Plex server",
  "version": "1.1.1",
  "author": "Matthew Machivenyika",
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "background": {
    "page": "background/background.html",
    "persistent": false
  },
  "page_action": {
    "default_popup": "popup/popup.html",
    "default_icon": {
      "16": "images/icon16.png",
      "32": "images/icon32.png",
      "48": "images/icon48.png",
      "128": "images/icon128.png"
    }
  },
  "permissions": [
    "activeTab",
    "downloads",
    "declarativeContent"
  ]
}