Media key support for Pocket Casts

Media key support for Pocket Casts

Control Pocket Casts podcast webapp from anywhere!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Media key support for Pocket Casts",
  "version": "1.2.3",
  "author": "Tobias Thyssen, John Taylor (Active maintainer)",
  "description": "Control Pocket Casts podcast webapp from anywhere!",
  "icons": {
    "128": "icons/keyboard-128.png"
  },
  "permissions": [
    "tabs",
    "https://play.pocketcasts.com/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://play.pocketcasts.com/*"
      ],
      "js": [
        "commands.js"
      ]
    }
  ],
  "commands": {
    "play-pause": {
      "suggested_key": {
        "default": "MediaPlayPause"
      },
      "description": "Play/Pause",
      "global": true
    },
    "jump-back": {
      "suggested_key": {
        "default": "MediaPrevTrack"
      },
      "description": "Jump back 10 seconds",
      "global": true
    },
    "jump-forward": {
      "suggested_key": {
        "default": "MediaNextTrack"
      },
      "description": "Jump forward 30 seconds",
      "global": true
    }
  }
}