您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
SS Theme for TL
// ==UserScript== // @name Tide League Shell Shockers Theme // @namespace http://tampermonkey.net/ // @version 1 // @description SS Theme for TL // @author Jayvan // @match https://shellshock.io/ // @grant none // ==/UserScript== (function() { const theme=()=>{ document.title = 'Tide League'; let style = document.createElement('link'); style.rel = 'stylesheet'; style.href = 'https://Tide-League-Theme.jayvan229.repl.co/style.css'; document.head.appendChild(style); setTimeout(function(){ document.getElementById("logo").innerHTML = "<img src='https://cdn.discordapp.com/attachments/811268272418062359/872246201196621884/unknown.png'>"; document.getElementById("shellshockers_titlescreen_wrap").innerHTML = "<img src='https://cdn.discordapp.com/attachments/811268272418062359/872255106819686430/unknown.png'><img src='https://cdn.discordapp.com/attachments/811268272418062359/872255106819686430/unknown.png'><img src='https://cdn.discordapp.com/attachments/811268272418062359/872255106819686430/unknown.png'>"; }, 2000); } if(document.body){ theme(); }else{ document.addEventListener('DOMContentLoaded', function(load){ theme(); }) } })();