Skip to content

Instantly share code, notes, and snippets.

@cameroncros
Last active March 29, 2022 12:49
Show Gist options
  • Save cameroncros/d529ec90da2a6be783f539a79608df40 to your computer and use it in GitHub Desktop.
Save cameroncros/d529ec90da2a6be783f539a79608df40 to your computer and use it in GitHub Desktop.
Like all the songs in a playlist - Apple Music
arr = document.getElementsByClassName('love-or-popular__glyph');
for (let item of arr) {
if (item.attributes['aria-check'].value == "false")
{
console.log("Clicked");
item.click();
await new Promise(r => setTimeout(r, 500));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment