Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- vids = new Set();
- for (let a of document.getElementsByTagName("a")) {
- if (a.href.includes("watch?")) {
- const url = a.href.replace(/&list.*/, "");
- vids.add(url);
- }
- }
- console.log(Array.from(vids).join("\n"))
Advertisement
Add Comment
Please, Sign In to add comment