Spotify Launcher

Spotify Launcher

Launches Spotify's native client instead of webplayer's useless landing page when Spotify links are opened.

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 Launcher",
  "description": "Launches Spotify's native client instead of webplayer's useless landing page when Spotify links are opened.",
  "version": "1.2",
  "author": {
    "name": "Sergio Cruz",
    "url": "http://sergio.cat/"
  },
  "content_scripts": [
    {
      "js": [
        "extension.js"
      ],
      "css": [
        "extension.css"
      ],
      "run_at": "document_start",
      "matches": [
        "*://play.spotify.com/*"
      ]
    }
  ]
}