PodCasts Finder

PodCasts Finder

A podcast aggregator for Chrome

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "PodCasts Finder",
  "description": "A podcast aggregator for Chrome",
  "version": "1.0.1",
  "default_locale": "en",
  "icons": {
    "16": "icons/podcast_16.png",
    "32": "icons/podcast_32.png",
    "48": "icons/podcast_48.png",
    "64": "icons/podcast_64.png",
    "128": "icons/podcast_128.png"
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "alarms",
    "contextMenus",
    "idle"
  ],
  "browser_action": {
    "default_title": "podStation"
  },
  "background": {
    "page": "background/background.html",
    "persistent": false
  },
  "manifest_version": 2,
  "options_page": "podstation.html#/Options",
  "commands": {
    "play_pause": {
      "suggested_key": {
        "default": "MediaPlayPause"
      },
      "description": "Play/Pause podcast",
      "global": true
    }
  },
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'"
}