在您安装前,Greasy Fork镜像 希望您知道此脚本声明其包含了一些负面功能。这些功能也许会使脚本作者获利,而不能给您带来任何直接的金钱收益。
此脚本含有追踪您的操作的代码。
UnitedBan For BC
// ==UserScript== // @license WTFPL // @antifeature tracking // @name Uniban_CN // @description UnitedBan For BC // @version Beta_1 // @namespace uni_ban // @match *://*/*BondageClub* // @match *://*.bondage-europe.com/* // @match *://*.elementfx.com/* // @grant GM_registerMenuCommand // ==/UserScript== (function() { fetchData = function() { fetch('https://apis.huzpsb.eu.org/uniban/fetch').then(response=>response.text()).then(data=>{ BanList = data.split(','); isBanned = function(i) { return (BanList.indexOf('' + i)) != -1; } GM_registerMenuCommand('Report a player', ()=>{ window.open("https://apis.huzpsb.eu.org/report.html"); } ); ChatRoomNotificationRaiseChatJoin = function(C) { setTimeout(function() { if (isBanned(C.MemberNumber)) { ServerSend('ChatRoomAdmin', { MemberNumber: C.MemberNumber, Action: 'Ban' }); return; } }, 1000); } } ).catch(e=>alert('Uniban : Nerwork Error!')); } initBan = function() { console.log('Uniban: Waiting'); if (Player && Player.Name) { fetchData(); } else { setTimeout(initBan, 1000); } } setTimeout(initBan, 3000); } )();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址