Spotify Web Player Hotkeys

Spotify Web Player Hotkeys

Add keyboard shortcuts to control playback in Spotify Web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_application_title__",
  "description": "__MSG_application_description__",
  "version": "1.3.1",
  "default_locale": "en",
  "manifest_version": 3,
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {},
  "commands": {
    "play-pause": {
      "description": "__MSG_short_play_pause__",
      "suggested_key": {
        "default": "MediaPlayPause"
      },
      "global": true
    },
    "previous": {
      "description": "__MSG_short_previous__",
      "suggested_key": {
        "default": "MediaPrevTrack"
      },
      "global": true
    },
    "next": {
      "description": "__MSG_short_next__",
      "suggested_key": {
        "default": "MediaNextTrack"
      },
      "global": true
    },
    "shuffle": {
      "description": "__MSG_short_shuffle__",
      "global": true
    },
    "repeat": {
      "description": "__MSG_short_repeat__",
      "global": true
    },
    "like": {
      "description": "__MSG_short_like__",
      "global": true
    },
    "seek-forward": {
      "description": "__MSG_short_seek_forward__",
      "global": true
    },
    "seek-backward": {
      "description": "__MSG_short_seek_backward__",
      "global": true
    },
    "volume-up": {
      "description": "__MSG_volume_up__",
      "global": true
    },
    "volume-down": {
      "description": "__MSG_volume_down__",
      "global": true
    },
    "volume-mute": {
      "description": "__MSG_volume_mute__",
      "global": true
    },
    "queue-search": {
      "description": "__MSG_queue_search__",
      "global": true
    }
  },
  "permissions": [
    "scripting",
    "storage"
  ],
  "host_permissions": [
    "https://open.spotify.com/"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "https://open.spotify.com/*"
      ],
      "resources": [
        "web_accessible/checkPageInteraction.js",
        "web_accessible/logo.svg"
      ]
    }
  ]
}