Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save lordmegamax/564719655354a1f0ef61d9fa7fab0fda to your computer and use it in GitHub Desktop.

Select an option

Save lordmegamax/564719655354a1f0ef61d9fa7fab0fda to your computer and use it in GitHub Desktop.
Скрипт Chrome для удаления всех видео из плейлиста "Смотреть позже"
setInterval(function () {
document.querySelector('#primary button[aria-label="Меню действий"]').click();
var things = document.evaluate(
'//span[contains(text(),"Удалить из плейлиста ")]',
document,
null,
XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,
null
);
for (var i = 0; i < things.snapshotLength; i++) {
things.snapshotItem(i).click();
}
}, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment