PASTEDOWN   73   0
   57 604 B    30

Cytube scraper

By Synthbot
Created: 2023-07-01 13:45:06
Expiry: Never

div = document.getElementById('messagebuffer');
known = new Set();
sorted = [];

replaceImages = (e) => {
  images = e.getElementsByClassName('channel-emote')
  for (i of images) {
    textnode = document.createTextNode(i.title);
    i.parentNode.insertBefore(textnode, i);
  }
}

grabMessages = () => {
  div.childNodes.forEach((x) => {
    if (!known.has(x)) {
      replaceImages(x);
      known.add(x);
      sorted.push(x);
    }
  });
  window.setTimeout(grabMessages, 1000);
}

grabMessages();

dump = () => {
  console.log(sorted.map((x) => x.textContent));
}

Pony Preservation Project - /mlp/con 2021

by Synthbot

Pony Preservation Project - /mlp/con 2020

by Synthbot

Preservation Project History - 2020 to 2021

by Synthbot

Missing music

by Synthbot

Animation format

by Synthbot