Soundpilot Plus - SoundCloud player

Soundpilot Plus - SoundCloud player

Adds a simple SoundCloud player to the toolbar. Play, pause, next, previous and like commands, all without touching your Soundcloud tab. Forked from the original open source Soundpilot by Luciano Cardoso.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "Adds a simple SoundCloud player to the toolbar. Play, pause, next, previous and like commands, all without touching your Soundcloud tab. Now with new hotkeys",
  "manifest_version": 2,
  "name": "Soundpilot Plus",
  "version": "2.1.0",
  "homepage_url": "https://twitter.com/andy_codes",
  "icons": {
    "48": "icons/soundpiot-48.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "tabHide"
  ],
  "browser_action": {
    "default_icon": "icons/soundpiot-48.png",
    "theme_icons": [
      {
        "light": "icons/soundpiot-48.png",
        "dark": "icons/soundpiot-48.png",
        "size": 32
      }
    ],
    "default_title": "Soundpilot Plus",
    "default_popup": "popup/sp_popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.soundcloud.com/*"
      ],
      "js": [
        "content_scripts/sp.js"
      ]
    }
  ],
  "web_accessible_resources": [],
  "browser_specific_settings": {
    "gecko": {
      "id": "{a203971b-3dd1-4144-899d-9670d1fa0aa9}"
    }
  }
}