Spotify artist's all songs

Spotify artist's all songs

As you know Spotify doesn't provide method to listen all songs of artist in single playlist. With this extension you can simply…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Spotify artist's all songs",
  "version": "1.0.0",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "chrome-extension-async.js",
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "storage",
    "identity",
    "tabs"
  ]
}