Simple helper script to mass remove likes or unfollow accounts.
// Click all buttons with aria-label="Unlike"
const buttons = document.querySelectorAll('button[aria-label="Unlike"]');
buttons.forEach(button => {
button.click();
});
To unfollow, replace "Unlike"
with "Unfollow"
.
Простой скрипт-помощник для удаления лайков или отписок.
// Кликает по всем кнопкам с aria-label="Unlike"
const buttons = document.querySelectorAll('button[aria-label="Unlike"]');
buttons.forEach(button => {
button.click();
});
Для отписки замени "Unlike"
на "Unfollow"
.