Ultimate Spotify Search

Ultimate Spotify Search

Simplifies search on Spotify. Adds launchers on Youtube, Soundcloud, Bandcamp. Allows search using right-click. Shows results on either desktop app or web player. Thanks to @Skibit for their contribution

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Ultimate Spotify Search",
  "version": "4.3",
  "manifest_version": 2,
  "description": "Simplifies search on Spotify with launchers on popular sites and search from right-click",
  "permissions": [
    "contextMenus",
    "tabs",
    "storage",
    "*://play.spotify.com/*",
    "*://*.youtube.com/*",
    "*://*.soundcloud.com/*",
    "*://*.bandcamp.com/*"
  ],
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "web_accessible_resources": [
    "icons/*.png"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "options_ui": {
    "page": "settings/settings.html",
    "open_in_tab": true
  }
}