Gmail – Export Google Reminders

google-calendar-remindersinbox-by-gmail

Is there a way to export Google reminders?

In Google ecosystem, these reminders are everywhere. In Google Calendar, Google Inbox, Google Keep, Google Now, etc.

But is there a way to export/ sync these reminders to any outside service/ provider?

Best Answer

For Inbox Reminders, I found a way to at least export their urls to a readable plain text list, using the javascript console. I've used the snippet below:

Array.prototype.slice.call(document.getElementsByClassName('bV dj')).map(function(i){ return decodeURIComponent(i.href.replace(/^.*url\?q=([^&]*)&.*$/,'$1')) })

Which prints a comma-separated list of urls that I can copy and paste elsewhere.