Play/Pause Button For Pocket Casts 2

Play/Pause Button For Pocket Casts 2

Simple play/pause button for Pocket Casts. This button allows to pause or resume current podcasts independently of current tab with shortcuts support.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_ext_name__",
  "short_name": "__MSG_ext_short_name__",
  "description": "__MSG_ext_description__",
  "version": "2.0.15",
  "author": "Artem Zanin",
  "default_locale": "en",
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "57.0"
    }
  },
  "icons": {
    "16": "images/Play.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "options_ui": {
    "page": "options.html"
  },
  "permissions": [
    "storage",
    "tabs",
    "https://play.pocketcasts.com/*/"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://play.pocketcasts.com/*/"
      ],
      "js": [
        "action-play.js",
        "action-skip.js",
        "log-listener.js"
      ]
    }
  ],
  "browser_action": {
    "default_title": "__MSG_Play__",
    "default_icon": "images/Play.png"
  },
  "commands": {
    "play-pause": {
      "suggested_key": {
        "default": "Ctrl+Alt+P"
      },
      "description": "__MSG_play_pause__"
    },
    "jump-back": {
      "suggested_key": {
        "default": "Ctrl+Alt+B"
      },
      "description": "__MSG_jump_back__"
    },
    "jump-forward": {
      "suggested_key": {
        "default": "Ctrl+Alt+F"
      },
      "description": "__MSG_jump_forward__"
    }
  }
}