Get wallpaper url with Javascript
Chrome Dev Tool
Wallpaper site: https://interfacelift.com/wallpaper/downloads/date/any/ .
- Open
Google Chrome
app; Command
+option
+j
, OpenConsole
panel;- Copy this code:
var i = 0, j = [], a = document.querySelectorAll('[href$=".jpg"]');
for (i; i < a.length; i++) {
j[i] = a.item(i)['href'];
}
j.join();
- Paste the Console,Execution;
- Click result;
- Tools bulk download;
done.
Updata time: 12/26 2015