ThotHub.tv Forum Gallery Downloader

Download galleries from posts on forum.thothub.tv

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         ThotHub.tv Forum Gallery Downloader
// @namespace    ThotDev
// @description  Download galleries from posts on forum.thothub.tv
// @version      1.1.0
// @icon         https://i.imgur.com/5xpgAny.jpg
// @license      WTFPL; http://www.wtfpl.net/txt/copying/
// @match        https://forum.thothub.tv/*
// @require      https://code.jquery.com/jquery-3.3.1.min.js
// @require      https://unpkg.com/[email protected]/dist/jszip.min.js
// @require      https://unpkg.com/[email protected]/dist/FileSaver.min.js
// @require      https://greasemonkey.github.io/gm4-polyfill/gm4-polyfill.js?v=a834d46
// @noframes
// @connect      self
// @run-at       document-start
// @grant        GM.xmlHttpRequest
// @grant        GM_xmlhttpRequest
// ==/UserScript==

jQuery(function ($) {	
	$('.message-attribution-opposite')
		.map(function () { return $(this).children('li:first'); })
		.each(function () {
				var downloadLink = $('<li><a href="#">⭳ Download</a><li>');
                var $text = downloadLink.children('a');
				downloadLink.insertBefore($(this));
				downloadLink.click(function (e) {
					e.preventDefault();
					
					var urls = $(this)
						.parents('.message-main')
						.first()
						.find('a.js-lbImage,.lbContainer-zoomer')
						.map(function () { return $(this).is('[href]') ? $(this).attr('href') : $(this).data('src'); })
						.get();
						
					var zip = new JSZip(),
						current = 0,
						total = urls.length;
					
					$text.text('Downloading...');
					
					function next () {
						if (current < total) {
							$text.text('Downloading ' + (current+1) + '/' + total);
							
							GM.xmlHttpRequest({
								method: 'GET',
								url: urls[current++],
								responseType: 'arraybuffer',
								onload: function (response) {
                                    try {
                                        var name = response.responseHeaders.match(/^content-disposition.+(?:filename=)(?<filename>.+)$/mi).groups['filename'].replace(/\"/g, '');
									    var data = response.response;
									    zip.file(name, data);
                                    }
                                    catch (err) {
                                        
                                    }
									
									next();
								},
								onerror: function (response) {
									next();
								}
							});
						}
						else {
							$text.text('Generating zip...');
							zip.generateAsync({ type: 'blob' })
								.then(function (blob) { 
                                  	$text.text('Download complete!');
									saveAs(blob, 'Gallery.zip');
								});
							
						}
					}
					next();
				});
			}
		);
});