Better Overcast

Better Overcast

Make navigating the Overcast active podcasts a bit easier

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Better Overcast",
  "version": "1.3.3",
  "description": "Make navigating the Overcast active podcasts a bit easier",
  "permissions": [
    "*://overcast.fm/*",
    "storage"
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://overcast.fm/podcasts"
      ],
      "js": [
        "index.js"
      ],
      "css": [
        "styles.css"
      ]
    }
  ]
}