Synthbot

Untitled

Jul 23rd, 2021
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. vids = new Set();
  2. for (let a of document.getElementsByTagName("a")) {
  3. if (a.href.includes("watch?")) {
  4. const url = a.href.replace(/&list.*/, "");
  5. vids.add(url);
  6. }
  7. }
  8. console.log(Array.from(vids).join("\n"))
Advertisement
Add Comment
Please, Sign In to add comment