您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
在dlsite的下载页面添加一个批量下载的按钮
// ==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); } }; })();