dlsite下载按钮

在dlsite的下载页面添加一个批量下载的按钮

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         dlsite下载按钮
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  在dlsite的下载页面添加一个批量下载的按钮
// @author       banzhe
// @match        https://www.dlsite.com/*/download/split/*
// @icon         https://www.dlsite.com/favicon.ico
// @grant        unsafeWindow
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';
    createButton();
    function createButton(){
        let node = document.getElementsByClassName("work_dl")[0];
        node.innerHTML = "<input type='button' value='download' onclick='window.downloadAll()'>"
    }
    unsafeWindow.downloadAll = function(){
        let url_list = document.getElementsByClassName("btn_dl");
        for(let i=0; i<url_list.length; i++){
            window.open(url_list[i].href);
        }
    };
})();