Greasy Fork

Sploop.io Modifications

Transparent Hat & Clan Menu, Auto Toggle, Auto Select Mode, Ad Remove

目前为 2023-03-25 提交的版本。查看 最新版本

// ==UserScript==
// @name         Sploop.io Modifications
// @namespace    https://greasyfork.org/en/users/752105-w4it
// @version      v3.0.0
// @description  Transparent Hat & Clan Menu, Auto Toggle, Auto Select Mode, Ad Remove
// @author       W4IT
// @match        *://*.sploop.io/*
// @grant        none
// ==/UserScript==

// === STYLING & Ad Remove ===
document.querySelector('#game-content').style.justifyContent = 'center';
document.querySelector('#main-content').style.width = 'auto';

document.getElementById('hat-menu').style.background = "rgba(0,0,0,0)"
document.getElementById('hat-menu').style.opacity = "0.9"
document.getElementById('clan-menu').style.background = "rgba(0,0,0,0)"
document.getElementById('clan-menu').style.opacity = "0.9"
document.getElementById("hat_menu_content").style.background = "rgba(0,0,0,0)"
document.getElementById("clan_menu_content").style.background = "rgba(0,0,0,0)"
var styleItem1 = document.createElement("style");
styleItem1.type = "text/css";
styleItem1.appendChild(document.createTextNode(`
#cross-promo, #bottom-wrap, #google_play, #game-left-content-main, #game-bottom-content, #game-right-content-main, #left-content, #right-content {
    display: none !important;
}
#hat-menu .green-button, #clan-menu .green-button {
	background-color: rgba(0,0,0,0);
	box-shadow:none;
}
#hat-menu .green-button:hover, #clan-menu .green-button:hover {
    background-color: rgba(0,0,0,0.2);
}
.subcontent-bg {
	border-color: transparent;
	box-shadow: none;
    background: transparent;
}
.menu .content .menu-item .menu-pricing .action {
	border-color: transparent;
}
.menu .content .menu-item {
	border-bottom-color: transparent;
}
#hat-menu, #clan-menu {
box-shadow: none;
border: 1px solid black
}

#clan_menu_content .subcontent-bg {
margin: 1px 0px 1px 0px;
}

#create_clan * {
background-color: transparent;
}


.scrollbar::-webkit-scrollbar {
    background: rgba(0, 0, 0, 0);
    border-radius: 2px;
    border: 2px solid rgba(0, 0, 0, 0.9);
}
.scrollbar::-webkit-scrollbar-thumb {
    background: rgba(255,255,255, 0.7);
    border-radius: 2px;
    border: 2px solid #141414;
    box-shadow: inset 0 1px 0 white, inset 0 -1px 0 #4e5645,
    0 1px 1px rgb(20 20 20 / 50%);
}
`))
document.head.appendChild(styleItem1);


//Auto Toggle
const grid = document.querySelector('#grid-toggle');//Render Grid
const particle = document.querySelector('#particle-toggle');//Render Particles
const ping = document.querySelector('#display-ping-toggle');//View Ping
const nativeRender = document.querySelector('#native-render-toggle');//Native Render
const nativeHelper = document.querySelector('#native-helper-toggle');//Native Friendly Indicator

//Copy the line below and change 'grid' to the variable name above
grid.click();


//Auto Mode
const classic = document.querySelector('#ffa-mode');
const sandbox = document.querySelector('#sandbox-mode');
const battleroyale = document.querySelector('#battleroyale-mode');
let a;
a = setInterval(()=>{
    if(document.querySelector('#small-waiting').style.display === "none") {
        //Change the 'battleroyale' in the line below to the variable you want
        sandbox.click();
        clearInterval(a);
    }
}, 100);