Last active
June 30, 2017 02:27
-
-
Save matthiaskern/2b57de135bf11b62f67b to your computer and use it in GitHub Desktop.
Small script to fetch saved for later items from feedly as JSON. Based on https://gist.github.com/bradcrawford/7288411
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if(!(window.jQuery)) { | |
var script = document.createElement("script"); | |
script.setAttribute("src", "https://code.jquery.com/jquery-2.2.1.min.js"); | |
script.setAttribute("type", "text/javascript"); | |
script.onload = logItems; | |
document.getElementsByTagName("head")[0].appendChild(script); | |
} else { | |
logItems(); | |
} | |
var json; | |
function logItems(){ | |
var map = $("#timeline").children().map(function(){ | |
if($(this).hasClass("section")){ | |
return; | |
} | |
else{ | |
var elements = $(this).children(); | |
var links = elements.map(function(){ | |
var el = $(this); | |
return { | |
title: el.data("title"), | |
url: el.data("alternate-link") | |
}; | |
}).get(); | |
return links; | |
} | |
}).get(); | |
json = JSON.stringify(map, undefined, 2); | |
console.log(json); | |
} | |
// type copy(json) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
As of today, looks like the
$
global name is already used by something else than jQuery.Also, maybe you should add a note that the content has to be fully scrolled before executing the script.