📚 Blog Archive

Export a list from Wunderlist

· Miguel Parramón · blogger

No amount of googling has provided me with a way to export a list from Wunderlist. The closest I’ve found form an official answer is “this is something we hope to add with a future update”. Here’s my unofficial solution:

  • Navigate to the list you want to export:

  • Open the Chrome console: Ctrl + Shift + J / Cmd + Opt + J

  • Load jQuery by pasting the following:

    var jq = document.createElement(‘script’); jq.src = “https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js”; document.getElementsByTagName(‘head’)[0].appendChild(jq);

  • Paste this to print out your list on the console

$(‘.taskItem-titleWrapper-title’).map(function(){ return $(this).text();})

  • Grab your shiny new list from the console in a convenient format :D

If you’ve found a better solution, do share!

View original post →