Skip to content

Instantly share code, notes, and snippets.

View lordmegamax's full-sized avatar

Max Melnychuk lordmegamax

View GitHub Profile
@lordmegamax
lordmegamax / YouTube_watch_later_remove_all_russian.js
Created January 1, 2021 13:08
Скрипт 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++) {