Webplayer Hotkeys - Shortcuts for web players

Webplayer Hotkeys - Shortcuts for web players

Assign hotkeys to play/pause, and switch music. Works with Spotify, Deezer, SoundCloud, Youtube and Youtube Music.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Webplayer Hotkeys - Shortcuts for web players",
  "version": "1.3.2",
  "description": "Assign hotkeys to play/pause, and switch music. Works with Spotify, Deezer, SoundCloud, Youtube and Youtube Music.",
  "icons": {
    "128": "icon.png"
  },
  "author": "Gabriel Duarte",
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "commands": {
    "prev": {
      "description": "Previous music",
      "suggested_key": "Alt+Shift+Comma",
      "global": true
    },
    "play": {
      "description": "Play/pause",
      "suggested_key": "Alt+Shift+P",
      "global": true
    },
    "next": {
      "description": "Next music",
      "suggested_key": "Alt+Shift+Period",
      "global": true
    }
  },
  "homepage_url": "https://github.com/GabrielQDuarte/Webplayer-Hotkeys/tree/master",
  "incognito": "split",
  "permissions": [
    "*://*.spotify.com/*",
    "*://*.youtube.com/*",
    "*://soundcloud.com/*",
    "*://*.deezer.com/*",
    "tabs"
  ]
}