Marketplace
The Spicetify Marketplace is a built-in store that lets you browse, install, and manage customizations directly from Spotify.
Installation
If you followed the Getting Started guide, Marketplace is already installed. If not:
- Windows
- Linux / macOS
iwr -useb https://raw.githubusercontent.com/spicetify/marketplace/main/resources/install.ps1 | iex
curl -fsSL https://raw.githubusercontent.com/spicetify/marketplace/main/resources/install.sh | sh
Using Marketplace
After installation, you'll see a Marketplace item in Spotify's sidebar. Click it to open the store.
Browsing
The Marketplace has several tabs:
- Extensions: Add features like lyrics display, keyboard shortcuts, and more
- Themes: Change Spotify's visual appearance
- Snippets: Small CSS tweaks for minor visual adjustments
Use the search bar to find specific items, or browse by category.
Installing
- Click on any item to see its details
- Click Install to add it to your Spotify
- The change takes effect immediately (no restart needed for most items)
Managing Installed Items
Click the Installed tab to see everything you've added. From here you can:
- Enable/Disable: Toggle items on and off without uninstalling
- Uninstall: Remove items completely
- Update: Apply updates when available (indicated by a badge)
Marketplace vs Manual
| Feature | Marketplace | Manual |
|---|---|---|
| One-click install | Yes | No |
| Automatic updates | Yes | No |
| Built-in extensions | Some | All |
| Custom/local files | No | Yes |
| Fine-grained control | Limited | Full |
For built-in extensions that ship with Spicetify (like Full App Display, Keyboard Shortcuts, etc.), see the Extensions page for manual installation instructions.
Troubleshooting
Marketplace not showing in sidebar
- Make sure you ran the Marketplace install script
- Run
spicetify applyto ensure changes are applied - Restart Spotify
Items not installing
- Check your internet connection
- Try running
spicetify restore backup applyto refresh the installation - Check the GitHub Issues for known problems
Marketplace disappeared after Spotify update
After Spotify updates, you may need to re-apply Spicetify:
spicetify backup apply
Resetting Marketplace
If Marketplace becomes unresponsive or you cannot access its settings:
-
Enable DevTools:
spicetify enable-devtools -
Open DevTools in Spotify (Ctrl + Shift + I or Cmd + Option + I)
-
In the Console tab, run:
Marketplace.reset()This resets all Marketplace localStorage data. You can also reset specific types:
Marketplace.reset("theme") // Reset theme only
Marketplace.reset("extensions") // Reset extensions only
Marketplace.reset("snippets") // Reset snippets only
Marketplace.reset("theme", "snippets") // Reset multiple types -
Restart Spotify