您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Adds an option to kick all members of your steam community group at once.
// ==UserScript== // @name Steam Community - Group Members Kicker // @namespace Royalgamer06 // @version 1.1.5 // @description Adds an option to kick all members of your steam community group at once. // @author Royalgamer06 // @include /^http(s)*\:\/\/steamcommunity\.com\/groups\/(?!.+(\#|\/)).*$/ // @grant unsafeWindow // @run-at document-idle // @require https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js // ==/UserScript== this.$ = this.jQuery = jQuery.noConflict(true); var members = [], total = 0, modal = null; unsafeWindow.initKicking = function() { if (confirm("Are you sure you want to kick all members of your group?")) { modal = ShowBlockingWaitDialog("Executing...", "Gathered " + members.length + "/" + total + " steamID's of " + g_strGroupName + " members."); getMembers(1); } }; function getMembers(p) { $.get(g_strGroupURL + "/memberslistxml/?xml=1&p=" + p, function(xml) { var xmlmembers = Array.from($("steamID64", xml)); xmlmembers.forEach(function(member) { var steamid = member.innerText.trim(); if (steamid != g_steamID) members.push(steamid); }); modal.Dismiss(); modal = ShowBlockingWaitDialog("Executing...", "Gathered " + members.length + "/" + total + " steamID's of " + g_strGroupName + " members."); if (xmlmembers.length == 1000) { getMembers(p+1); } else { kickMembers(); } }); } function kickMembers() { var kicked = 0; var n = 0; members.forEach(function(member) { if (member != g_steamID) { $.post(g_strGroupURL + "/membersManage", { sessionID: g_sessionID, action: "kick", memberId: member, queryString: "" }, function() { kicked++; modal.Dismiss(); modal = ShowBlockingWaitDialog("Executing...", "Kicked " + kicked + "/" + members.length + " members of " + g_strGroupName + "."); }).always(function() { n++; if (n == members.length) { modal.Dismiss(); ShowAlertDialog("All done!", "Kicked " + kicked + " members of " + g_strGroupName + ".<br>" + (n-kicked) + " Members failed to kick.<br><br>I hope you found this userscript useful.<br>Please rate this userscript.<br>Feedback is also appreciated.<br>Thank you"); } }); } }); } $(document).ready(function() { if (!!location.href.match(/^https?:\/\/steamcommunity\.com\/groups\/.*$/) && $(".admin_option_icon").length > 0) { total = parseInt($(".members .count").first().text().match(/[0-9]+/g).join("")) - 1; if (total <= 1) { $("[href*=ConfirmLeaveGroup]").text("Delete Group"); } else { $(".admin_option_icon").last().parent().after('<div class="weblink"><img class="admin_option_icon" src="http://steamcommunity-a.akamaihd.net/public/images/skin_1/iconGroups.png"><a href="javascript:initKicking()">Kick All Group Members</a></div>'); } } });
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址