Bookmark your favorite moment in any song. Spotify will automatically skip to it every time the track plays.
- Drag-to-bookmark — drag the pin icon onto the progress bar to set a timestamp
- Auto-seek — on song start, automatically jumps to your saved spot
- Visual marker — a glowing dot on the progress bar shows where your bookmark is
- Hover to remove — hover over the marker dot to get a remove option
- Persistent storage — bookmarks are saved in
localStorageper Spotify track URI - Per-song, per-user — each song gets its own independent bookmark
- Set a bookmark: Drag the 📌 pin icon (in the player controls) onto the progress bar at any position. A tooltip will ask you to confirm.
- Auto-play from bookmark: The next time that song plays, it will automatically seek to your saved spot.
- See your bookmark: A glowing green dot appears on the progress bar at the bookmarked position.
- Remove a bookmark: Hover over the green dot → click Remove.
- Update a bookmark: Drag the pin icon again to a new position and save.
Search for "Song Bookmark" in the Marketplace extensions tab.
# Copy the extension to your Spicetify extensions folder
copy songBookmark.js %APPDATA%\spicetify\Extensions\
# Enable it
spicetify config extensions songBookmark.js
spicetify applyBookmarks are stored in your browser's localStorage under the key SongBookmark:bookmarks.
Format: { "spotify:track:<id>": <milliseconds> }
You can export/import them via your browser's DevTools console:
// Export
copy(localStorage.getItem("SongBookmark:bookmarks"))
// Import
localStorage.setItem("SongBookmark:bookmarks", '<paste json here>')PRs welcome! Please open an issue before making major changes.
MIT