Skip to content

4 little lines to export your "Read later" link list from feedly

License

Notifications You must be signed in to change notification settings

Jumanjii/Feedly-ReadLater-Extractor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Logo of projectFeedly ReadLater Extractor

4 little lines to extract your "Read later" link list from feedly to your clipboard.

For some reason, you may want to export your Read later list from Feedly.

  1. Go on your "Read later" page
  2. Scroll down until you load all your article list
  3. Copy the following in your console and press enter :-)
var regex = /data-alternate-link="(.*)" data-navigation/g;
const elements = document.getElementsByClassName("list-entries");
const matches = [...elements.item(0).outerHTML.matchAll(regex)];
copy(matches.map(match => match[1]));

The list containing all your links is now in your clipboard and you can paste it wherever you want 🥳

About

4 little lines to export your "Read later" link list from feedly

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages