Skip to content

Instantly share code, notes, and snippets.

View arnoudhgz's full-sized avatar

Arnoud Beekman arnoudhgz

View GitHub Profile
@arnoudhgz
arnoudhgz / youtube-music-multi-add.md
Last active May 11, 2026 23:02
Youtube premium add songs from playlist to your liked songs

Open your playlist in your browser, scroll all the way to the bottom (Youtube music does not show all at once), open your developer tools, run this in the console:

(async () => {
  const buttons = document.querySelectorAll('button.ytSpecButtonShapeNextHost[aria-pressed="false"][aria-label="Like"]');
  console.log(`Found ${buttons.length} Like buttons to click`);
  for (const btn of buttons) {
    btn.click();
 await new Promise(r => setTimeout(r, 500));