该存储库具有我为Shell Shockers制作的一些mod。享受!
(您需要安装TampermonKey扩展名以使用这些mod)
// ==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 ) ;
} ) ( ) ;