steam创意工坊一键下载,仅支持合集,需配合steamcmd下载
< 脚本steam创意工坊(合集)一键下载的反馈
(function() { var text = "workshop_download_item " var game_id = $(".smallForm").find('input[name="appid"]').val(); var mod_id = $(".smallForm").find('input[name="id"]').val(); text = text + game_id + " " + mod_id var element = document.getElementById("AddToCollectionBtn"); var button = document.createElement('span'); button.setAttribute('class', 'general_btn share tooltip'); button.setAttribute('data-tooltip-text', '通过steamcmd下载'); button.innerHTML = '复制'; button.addEventListener("click",function(){ copyToClipboard(text); },false); element.parentNode.appendChild(button);})();function copyToClipboard(text) { var textArea = document.createElement("textarea"); textArea.value = text; document.body.appendChild(textArea); textArea.select(); document.execCommand("copy"); document.body.removeChild(textArea);}改了一下,能直接用在单个mod上了.bat文件修改steamcmd +login anonymous直接匿名登陆
txt文本里已经加上匿名登陆了,另外单个mod的下载用脚本好像更麻烦(我懒)
截止到2024.08.14已经无法使用
登录(不可用)以发表回复。
土豆服务器,请按需使用
镜像地址随时可能被墙,建议加群获取最新地址
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址
(function() {
var text = "workshop_download_item "
var game_id = $(".smallForm").find('input[name="appid"]').val();
var mod_id = $(".smallForm").find('input[name="id"]').val();
text = text + game_id + " " + mod_id
var element = document.getElementById("AddToCollectionBtn");
var button = document.createElement('span');
button.setAttribute('class', 'general_btn share tooltip');
button.setAttribute('data-tooltip-text', '通过steamcmd下载');
button.innerHTML = '复制';
button.addEventListener("click",function(){
copyToClipboard(text);
},false);
element.parentNode.appendChild(button);
})();
function copyToClipboard(text) {
var textArea = document.createElement("textarea");
textArea.value = text;
document.body.appendChild(textArea);
textArea.select();
document.execCommand("copy");
document.body.removeChild(textArea);
}
改了一下,能直接用在单个mod上了.bat文件修改steamcmd +login anonymous直接匿名登陆