Este repositorio presenta algunas modificaciones que hice para Shell Shockers. ¡Disfrutar!
(Deberá instalar la extensión Tampermonkey para usar estas modificaciones)
// ==UserScript==
// @name Better Inventory | Shell Shockers
// @version 4.0
// @author Infinite Smasher
// @description Inventory Upgrades - new item themes, skin randomizer, UI improvements, and MOAR!
// @icon https://raw.githubusercontent.com/InfiniteSmasher/Better-Inventory/main/ico_egg.png
// @require https://raw.githubusercontent.com/InfiniteSmasher/Better-Inventory/main/htmlEdits.js
// @match *://*shellshock.io/*
// @run-at document-end
// ==/UserScript==
( function ( ) {
let script = document . createElement ( 'script' ) ;
script . src = 'https://cdn.jsdelivr.net/gh/InfiniteSmasher/Better-Inventory@latest/inventory.js' ;
document . head . appendChild ( script ) ;
let style = document . createElement ( 'link' ) ;
Object . assign ( style , {
rel : 'stylesheet' ,
href : 'https://cdn.jsdelivr.net/gh/InfiniteSmasher/Better-Inventory@latest/inventory.css'
} ) ;
document . head . appendChild ( style ) ;
} ) ( ) ;
Skins de armas predeterminados de Legacy con una palanca para efectos de sonido en el menú Configuración
// ==UserScript==
// @name Legacy Mode (w/ SFX Toggle in Settings) | Shell Shockers
// @version 4.0
// @author Infinite Smasher
// @description Go back in time with a settings toggle for the old in-game sound effects (2018/2019) and legacy default gun skins!
// @icon https://raw.githubusercontent.com/InfiniteSmasher/Legacy-Mode/main/ico_egg.png
// @match *://*shellshock.io/*
// @run-at document-body
// ==/UserScript==
( function ( ) {
let script = document . createElement ( 'script' ) ;
script . src = 'https://cdn.jsdelivr.net/gh/InfiniteSmasher/Legacy-Mode@latest/legacy2.js' ;
document . head . appendChild ( script ) ;
} ) ( ) ;
Legacy Padre de arma predeterminada y efectos de sonido, ¡siempre encendido!
// ==UserScript==
// @name Legacy Mode | Shell Shockers
// @version 3.0
// @author Infinite Smasher
// @description Go back in time with the old in-game sound effects (2018/2019) and legacy default gun skins!
// @icon https://raw.githubusercontent.com/InfiniteSmasher/Legacy-Mode/main/ico_egg.png
// @match *://*shellshock.io/*
// @run-at document-end
// ==/UserScript==
( function ( ) {
let script = document . createElement ( 'script' ) ;
script . src = 'https://cdn.jsdelivr.net/gh/InfiniteSmasher/Legacy-Mode@latest/legacy1.js' ;
document . head . appendChild ( script ) ;
} ) ( ) ;
Sobrustador de color de huevo en inventario (bloqueado para no VIP)
Coming Soon !
Slive de color de huevo en el inventario (¡siempre desbloqueado!)
Coming Soon !
// ==UserScript==
// @name Hide HUD | Shell Shockers
// @version 1.0
// @author Infinite Smasher
// @description Adds a toggle in the settings menu to hide the HUD elements (in-game/spectate UI)
// @icon https://raw.githubusercontent.com/InfiniteSmasher/Hide-HUD/main/ico_egg.png
// @match *://*shellshock.io/*
// @run-at document-end
// ==/UserScript==
( function ( ) {
let script = document . createElement ( 'script' ) ;
script . src = 'https://cdn.jsdelivr.net/gh/InfiniteSmasher/Hide-HUD@latest/hideHud.js' ;
document . head . appendChild ( script ) ;
} ) ( ) ;
// ==UserScript==
// @name Speedrun Timer | Shell Shockers
// @version 1.0
// @author Infinite Smasher
// @description Adds a visible speedrun timer to the readouts while spawned - useful for speedruns ofc!
// @icon https://raw.githubusercontent.com/InfiniteSmasher/Speedrun-Timer/main/ico_egg.png
// @match *://*shellshock.io/
// @match *://*shellshock.io?*
// @run-at document-end
// ==/UserScript==
( function ( ) {
let script = document . createElement ( 'script' ) ;
script . src = `https://cdn.jsdelivr.net/gh/InfiniteSmasher/Speedrun-Timer@latest/timer.js?ts= ${ new Date ( ) . getTime ( ) } ` ;
document . head . appendChild ( script ) ;
} ) ( ) ;