Last active
September 18, 2018 03:40
-
-
Save MDIB/861a3e76cdf560141da1a51c6cfeab7a to your computer and use it in GitHub Desktop.
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
JSON.stringify( | |
$.map($('.item_content'), | |
(e) => { | |
return {title: $(e).find('.title').text(), | |
url: $(e).find('.original_url').prop('href'), | |
image: $(e).find('.lazy-active').css('background-image'), | |
id: $(e).parent().prop('id')} | |
}) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Just go to https://getpocket.com/a/queue/list/ and run this on console, it will output you a json array containing all items you have saved :)