Open Spotify Desktop App

Open Spotify Desktop App

Automatically opens the Desktop Spotify app for open.spotify.com links.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Open Spotify Desktop App",
  "version": "1.0",
  "description": "Automatically opens the Desktop Spotify app for open.spotify.com links.",
  "author": "Thom Allen - Twitter @thom801",
  "manifest_version": 2,
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "permissions": [
    "https://open.spotify.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "include_globs": [
        "https://open.spotify.com/*"
      ],
      "js": [
        "open-spotify.js"
      ]
    }
  ]
}