Deezer Next

Deezer Next

This extension hooks into Deezer to play a random track from one of your favourite artists.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Deezer Next",
  "description": "This extension hooks into Deezer to play a random track from one of your favourite artists.",
  "version": "1.1",
  "options_page": "options.html",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "DeezerNext16.png",
    "48": "DeezerNext48.png",
    "128": "DeezerNext128.png"
  },
  "permissions": [
    "declarativeContent",
    "tabs",
    "storage",
    "http://*/*",
    "https://*/*"
  ],
  "page_action": {
    "default_icon": "DeezerNext19.png",
    "default_title": "Next!"
  }
}