您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Adds people to groups
// ==UserScript== // @name Hack Forums Add to Group (Void) // @namespace Snorlax - slighlty edited by Hash G. // @description Adds people to groups // @require http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js // @include *hackforums.net/member.php?action=profile&uid=* // @version 1.4.1 // ==/UserScript== var uid = $(location).attr('href').replace(/[^0-9]/g, ''); var name = $("span[class*='group']").text(); if($("img[src*='void']").length >= 1) { $("span[class*='group']").after(' - <button class="remove button">Remove from Void</button>'); } else { $("span[class*='group']").after(' - <button class="add button">Add to Void</button>'); } $(".add").click(function(){ $.post("http://www.hackforums.net/managegroup.php", { "my_post_key": my_post_key, "action": "do_add", "gid": "49", "username": name }, function(data,status){ console.log("Data: " + data + "\nStatus: " + status); location.reload(); }); }); $(".remove").click(function(){ $.post("http://www.hackforums.net/managegroup.php", { "my_post_key": my_post_key, "action": "do_manageusers", "gid": "49", "removeuser[0]": uid }, function(data,status){ console.log("Data: " + data + "\nStatus: " + status); location.reload(); }); });