PowerPack for Pandora

PowerPack for Pandora

Toggle activity with keyboard shortcuts on Pandora

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "PowerPack for Pandora",
  "short_name": "PowerPack",
  "description": "Toggle activity with keyboard shortcuts on Pandora",
  "version": "0.1.0.5",
  "icons": {
    "16": "128logo.png",
    "38": "128logo.png",
    "48": "128logo.png",
    "96": "128logo.png",
    "128": "128logo.png"
  },
  "permissions": [
    "notifications",
    "tabs",
    "http://www.pandora.com/*",
    "http://pandora.com/*",
    "https://www.pandora.com/*",
    "https://pandora.com/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.pandora.com/*",
        "http://pandora.com/*",
        "https://pandora.com/*",
        "https://www.pandora.com/*"
      ],
      "js": [
        "pandora_play_toggle.js"
      ]
    }
  ],
  "commands": {
    "toggle-pandora-play": {
      "suggested_key": {
        "default": "Ctrl+Shift+1"
      },
      "description": "Toggle Pandora Play and Pause",
      "global": true
    },
    "toggle-pandora-skip": {
      "suggested_key": {
        "default": "Ctrl+Shift+2"
      },
      "description": "Toggle Pandora Skip",
      "global": true
    }
  },
  "manifest_version": 2
}