Compact Overcast

Compact Overcast

Compacts the layout on Overcast.fm, so that you can have it in a tiny window and still have access to all the information you need.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Compact Overcast",
  "description": "Compacts the layout on Overcast.fm, so that you can have it in a tiny window and still have access to all the information you need.",
  "version": "1.0",
  "author": "Charlotte Tan",
  "browser_action": {
    "default_icon": "images/icon-96x96.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://overcast.fm/*"
      ],
      "exclude_matches": [
        "https://overcast.fm/podcasts"
      ],
      "css": [
        "compactOvercast.css"
      ],
      "js": [
        "jquery-2.2.0.min.js",
        "compactOvercast.js"
      ]
    }
  ],
  "permissions": [
    "tabs"
  ]
}