SoundCloud Keyboard Shortcuts

SoundCloud Keyboard Shortcuts

Adds keyboard shortcuts (hotkeys) to play/pause, play next, play previous, and like tracks in SoundCloud

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "SoundCloud Keyboard Shortcuts",
  "description": "Adds keyboard shortcuts (hotkeys) to play/pause, play next, play previous, and like tracks in SoundCloud",
  "version": "0.0.0.2",
  "icons": {
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "eventPage.js"
    ],
    "persistent": false
  },
  "commands": {
    "play-pause": {
      "description": "Play/pause",
      "suggested_key": "Alt+Shift+P"
    },
    "next": {
      "description": "Next track",
      "suggested_key": "Alt+Shift+Period"
    },
    "previous": {
      "description": "Previous track",
      "suggested_key": "Alt+Shift+Comma"
    },
    "like-unlike": {
      "description": "Like/unlike track",
      "suggested_key": "Alt+Shift+L"
    }
  },
  "permissions": [
    "https://soundcloud.com/*"
  ],
  "page_action": {
    "default_title": "SoundCloud Keyboard Shortcuts"
  }
}