Spotify Side Lyrics

Spotify Side Lyrics

Enjoy synchronized Spotify Lyrics in your side bar no matter what tab you're on.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Spotify Side Lyrics",
  "description": "Enjoy synchronized Spotify Lyrics in your side bar no matter what tab you're on.",
  "version": "1.1",
  "permissions": [
    "sidePanel",
    "contextMenus"
  ],
  "action": {
    "default_title": "Click to open panel",
    "default_icon": {
      "128": "side_lyrics_logo_small.png"
    }
  },
  "content_scripts": [
    {
      "js": [
        "side_lyrics.js"
      ],
      "matches": [
        "https://open.spotify.com/*"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "side_panel": {
    "default_path": "side_bar_lyrics.html"
  },
  "icons": {
    "128": "side_lyrics_logo_small.png"
  }
}