Spotify Select

Simple extension that allows highlighted text to be brought easily into Spotify
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Spotify Select",
  "description": "Simple extension that allows highlighted text to be brought easily into Spotify",
  "version": "0.1.2",
  "permissions": [
    "http://*/*",
    "https://*/*",
    "contextMenus",
    "tabs",
    "identity",
    "storage"
  ],
  "content_scripts": [
    {
      "js": [
        "popup.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "background": {
    "scripts": [
      "spotify.js",
      "selection.js",
      "spotify_atoms.js",
      "oauth.js"
    ]
  },
  "externally_connectable": {
    "ids": [
      "*"
    ],
    "matches": [
      "*://*.reddit.com/*"
    ]
  },
  "manifest_version": 2
}