Music Hotkeys

Music Hotkeys

Access your music from any tab with hotkeys

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Music Hotkeys",
  "short_name": "goosic",
  "description": "Access your music from any tab with hotkeys",
  "version": "0.3",
  "permissions": [
    "https://play.google.com/music/*",
    "tabs"
  ],
  "icons": {
    "48": "icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "commands": {
    "2": {
      "description": "Previous",
      "suggested_key": "Alt+Shift+Comma"
    },
    "3": {
      "description": "Play/Pause",
      "suggested_key": "Alt+Shift+P"
    },
    "4": {
      "description": "Skip",
      "suggested_key": "Alt+Shift+Period"
    }
  }
}