Skip to content

Instantly share code, notes, and snippets.

View lex-r's full-sized avatar

Prisyazhnyuk Alexander lex-r

  • Saint Petersburg, Russia
View GitHub Profile
@lex-r
lex-r / console.js
Last active February 14, 2022 18:45
List of video titles of youtube playlist
let l = [];
document.querySelectorAll('a[id=video-title]').forEach(function(el) {
l.push(el.getAttribute('title'));
});
console.log(l);
let timeInSeconds = 0;
document.querySelectorAll('span[id=text]').forEach(function(el) {
if (!el) {
return;