Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@beastawakens
Forked from andrejj/funretro_export.js
Created March 8, 2018 10:15
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save beastawakens/1a982cf9840a44cd29052cc5456ddae4 to your computer and use it in GitHub Desktop.
Save beastawakens/1a982cf9840a44cd29052cc5456ddae4 to your computer and use it in GitHub Desktop.
fun retro export script
// paste it in the dev console
s=""; $('.column-header > h2').each(function(){s += '\n\n'+this.innerText+'\n'; $(this).closest('.message-list').find('.message-body > .text').each(function(){s += ' - '+this.innerText+'\n';}) }); console.log(s)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment