kucingsemprul / Diyidan Downloader

// ==UserScript==
// @name         Diyidan Downloader
// @namespace    https://www.diyidan.com
// @version      1.0
// @description  Show a button to download the full-size images in Diyidan
// @author       KucingSemprul
// @license MIT
// @match        https://www.diyidan.com/main/post/*
// @grant        none
// @require      http://danml.com/js/download2.js
// @require      https://onee3.org/libs/jszip/3.1.3/jszip.min.js
// @require      https://onee3.org/libs/jszip-utils/0.0.2/jszip-utils.min.js
// @require      https://onee3.org/libs/jquery/3.3.1/jquery.min.js
// @copyright 2019, kucingsemprul (https://openuserjs.org/users/kucingsemprul)
// ==/UserScript==

! function () {
  var images = $('.user_post_content a').map(function () {
    return $(this).attr('href')
  }).get();
  var imgs = $(".index-right");
  imgs.html('<a href="#" id="dlall" style="display: block;margin: 0 auto;text-align: center;font-size: 12px;color: #fff;"><span style="width: 106px;height: 30px;line-height: 30px;background: #FD4C86;">Download</span></a>');

  $("#dlall").click(function () {
    for (var i = 0; i < images.length; i++) {
      var urr = images[i];
      window.open(urr);
    }
  });
}();