Patreon Downloader

Patreon Downloader

Downloads images and files from Patreon feeds

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Patreon Downloader",
  "version": "0.1.4",
  "manifest_version": 3,
  "description": "Downloads images and files from Patreon feeds",
  "icons": {
    "48": "icons/icon48.png",
    "128": "icons/icon.png"
  },
  "action": {
    "default_icon": "icons/icon.png",
    "default_popup": "index.html"
  },
  "content_scripts": [
    {
      "js": [
        "jquery.min.js",
        "any-date-parser.min.js",
        "download.js"
      ],
      "css": [
        "download.css"
      ],
      "matches": [
        "http://*.patreon.com/*",
        "https://*.patreon.com/*"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "downloads",
    "storage"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  }
}