이 저장소에는 Shell Shockers를 위해 만든 일부 모드가 있습니다. 즐기다!
(이 모드를 사용하려면 TamperMonkey 확장을 설치해야합니다).
// ==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 ) ;
} ) ( ) ;
설정 메뉴에서 음향 효과 토글을 가진 레거시 기본 무기 스킨
// ==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 ) ;
} ) ( ) ;
레거시 기본 무기 스킨과 음향 효과 - 항상!
// ==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 ) ;
} ) ( ) ;
인벤토리에 달걀 컬러 슬라이더 (비 VIP 용 잠금)
Coming Soon !
인벤토리에 달걀 컬러 슬라이더 (항상 잠금 해제!)
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 ) ;
} ) ( ) ;