Castbox Episode Downloader

Castbox Episode Downloader

Downloader for https://castbox.fm/ episodes. Adds a download symbol next to the timeline.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Download Castbox Episode",
  "version": "1.0.1",
  "description": "Adds a download button for episodes on https://castbox.fm/.",
  "icons": {
    "48": "icons/icon_48.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://castbox.fm/episode/*"
      ],
      "js": [
        "./insert_download_button.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "images/download_button.png",
    "content/button.html"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{f41fb5bc-5a99-404d-abd1-fd86700ea824}"
    }
  }
}