Grooveshark Keyboard Shortcuts

Grooveshark Keyboard Shortcuts

Use the F7, F8 and F9 keys to play, pause, advance and return your songs on Grooveshark

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Grooveshark Keyboard Shortcuts",
  "description": "Use the F7, F8 and F9 keys to play, pause, advance and return your songs on Grooveshark",
  "version": "1.1",
  "background": {
    "scripts": [
      "jquery.js",
      "background.js"
    ]
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery.js",
        "jquery.hotkeys.js",
        "inject.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "manifest_version": 2,
  "icons": {
    "48": "icon-48.png",
    "128": "icon-128.png"
  }
}