Save YT Songs To Spotify

Save YT Songs To Spotify

Conveniently save songs on Youtube to your Liked Songs playlist on Spotify.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Save YT Songs To Spotify",
  "version": "1.6.10",
  "description": "Searches Spotify with Youtube video title and displays results in the popup where they can be saved to your Spotify library.",
  "icons": {
    "48": "assets/icons/toolbar-icon-48.png",
    "96": "assets/icons/toolbar-icon-96.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://github.com/mattx2hias/save-yt-songs-to-spotify/?code=*"
      ],
      "js": [
        "src/authorization-content-script.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "storage"
  ],
  "browser_action": {
    "default_icon": {
      "32": "assets/icons/toolbar-icon-32.png",
      "48": "assets/icons/toolbar-icon-48.png"
    },
    "default_title": "Save YT Songs To Spotify",
    "default_popup": "src/index.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{14869314-924b-4bd0-9938-04ba9dd59747}"
    }
  }
}