Skip to content

Instantly share code, notes, and snippets.

View Elerphore's full-sized avatar
♣️

Elerphore

♣️
View GitHub Profile
@Elerphore
Elerphore / remove-yandex-music.js
Created March 19, 2024 07:03
Easy way to remove all liked playlists, albums and misuc on music.yandex.ru
let interval = 500;
[...document.getElementsByClassName("d-like__icon")].forEach((item, index) => {
setTimeout(() => {
item.click()
console.log(`click happend with inddex ${index}`)
}, interval * index)
})