Get wallpaper url with Javascript

Chrome Dev Tool

Wallpaper site: https://interfacelift.com/wallpaper/downloads/date/any/ .

Interfacelift.com

  1. Open Google Chrome app;
  2. Command + option + j, Open Console panel;
  3. 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();
  1. Paste the Console,Execution;
  2. Click result;
  3. Tools bulk download;

done.

Updata time: 12/26 2015