wnacgDownload

Enhanced download of wnacg

Version vom 26.06.2019. Aktuellste Version

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         wnacgDownload
// @namespace    yrWnacg
// @version      1.2
// @description  Enhanced download of wnacg
// @require      https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js
// @author       Yanagiragi
// @match        https://www.wnacg.org/photos-index-aid-*.html
// @grant        GM_download
// ==/UserScript==

(function() {
    'use strict';
    const title = $('#bodywrap h2').text();
    const btn = $('.downloadbtn');

    $.ajax(btn.attr('href')).done( data => {
        const link = $('.down_btn', $(data)).attr('href')
        btn.on('click', event => {
            event.preventDefault();
            GM_download(link, `${title}.zip`)
        })
    });

})();