Created
August 17, 2016 18:14
-
-
Save Bersam/0c68e414d76957ad2f57e98b30054e8b to your computer and use it in GitHub Desktop.
Quote Fancy Link Extractor.
This file contains 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
// open https://quotefancy.com link like this one: | |
// https://quotefancy.com/motivational-quotes | |
// run this script in console. | |
var links = []; | |
$(".wallpaper").each(function(i,item){ | |
var id = $(item).attr("id").substr(4); | |
links.push("https://quotefancy.com/download/"+id+"/original/wallpaper.jpg"); | |
}); | |
document.body.innerHTML = links.join("\n </br>"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment