Skip to content

Instantly share code, notes, and snippets.

View aagarwal10's full-sized avatar

Abhishek Agarwal aagarwal10

View GitHub Profile
@aagarwal10
aagarwal10 / feedly_export_saved_for_later.js
Created April 6, 2016 19:56 — forked from matthiaskern/feedly_export_saved_for_later.js
Small script to fetch saved for later items from feedly as JSON. Based on https://gist.github.com/bradcrawford/7288411
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();
}
// Simple script that exports a users "Saved For Later" list out of Feedly
// as a JSON string.
//
// This was intended for use in the Google Chrome's "Inspector" tool so your
// mileage may vary if used in other contexts.
//
// Format of JSON is as follows:
// [
// {
// title: "Title",