您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
MINT FRESH
// ==UserScript== // @name Minty Playz Theme // @namespace http://tampermonkey.net/ // @version 2.0 // @description MINT FRESH // @author You // @match https://shellshock.io/ // @icon https://cdn.discordapp.com/attachments/811268272418062359/901263906515857458/unknown.png // @grant none // @license MIT // ==/UserScript== let stylesheet = document.createElement('link'); stylesheet.rel = 'stylesheet'; stylesheet.href = 'https://shellthemes.jayvan229.repl.co/ezthemedefault.css'; document.head.appendChild(stylesheet); let css = `#killBox h3{ display:none; } #killBox::before{ content: "You Demolished" !important; }#ss_background, #gameDescription, .load_screen, #progress-container { background: url('https://cdn.discordapp.com/attachments/996410750035824700/998947770415194192/Minty_Playz....gif') !important; position: absolute !important; background-size: cover !important; background-repeat: no-repeat !important; background-position: center !important; width: 100% !important; height: 100% !important; } div.media-tabs-content.front_panel.roundme_sm { background: linear-gradient(#eb34e5,#CB6CE6,#000000)!important; background-size: cover !important;} #equip_sidebox { border: var(--ss-space-sm) solid } .front_panel, #equip_sidebox { background: linear-gradient(#eb34e5,#CB6CE6,#000000); background-size: cover !important;} .front_panel { border: var(--ss-space-sm) solid ; } .ss_field, .ss_select { background: #ebd7fa; border: 1px solid #ffffff; color: #50008c;} .btn_blue, .btn_green, .ss_bigtab, .ss_bigtab.selected, .button_blue { background: linear-gradient(#000000,#50008c) !important; border: 0.2em solid #ffffff !important; color: #ecd4ff !important; } .btn_yolk, .btn_red, .btn_blue1 { background: linear-gradient(#eb34e5,#CB6CE6,#000000) !important; border: 0.2em solid #ffffff !important; color: #ffffff !important; } .morestuff { background-color: linear-gradient(#eb34e5,#CB6CE6,#000000) !important; border: 0.2em solid #ffffff !important; } .ss_bigtab:hover { color: #ecd4ff !important; } #stat_item { background: #ecd4ff; } #stat_item h4, .stat_stat { color: #430078; } .news_item:nth-child(odd), .stream_item:nth-child(odd) { background: #9934eb; } .news_item:nth-child(even), .stream_item:nth-child(even) { background: #e234eb; } .stream_item:hover, .news_item.clickme:hover { background: #6834eb !important; } #weapon_select:nth-child(1n+0) .weapon_img { background: radial-gradient(#000000,#CB6CE6,#eb34e5,#000000)!important; border: 3px solid #430078!important; } #popupTipDay #weapon_select:nth-child(1n+0) .weapon_img { background: radial-gradient(#000000,#CB6CE6,#eb34e5,#000000)!important; border: 3px solid #430078!important; } h3, h1, h2, h4, h5, h6, .front_panel h3, #equip.equipped_slots h3, #item_grid h3 { color: #ffffff !important; } label, .label { color: #ffffff !important; } .egg_count { color: #f6ebff; } .account_eggs { background: linear-gradient(#CB6CE6,#eb34e5,#000000); } #equip_equippedslots .equip_item, #equip_itemtype .selected, #equip_equippedslots .equip_item:hover { background: radial-gradient(#000000,#CB6CE6,#eb34e5,#000000); background-color: radial-gradient(#000000,#CB6CE6,#eb34e5,#000000); border: 0.33em solid #430078; } #equip_grid .store_item, #equip_grid .highlight, #equip_grid .store_item:hover { background: radial-gradient(#f6ebff,#CB6CE6,#eb34e5,#f6ebff); border: 0.33em solid #430078; color: #430078; } .popup_lg, .popup_sm { background: url('https://cdn.discordapp.com/attachments/996410750035824700/998947770415194192/Minty_Playz....gif'); border: 0.33em solid #430078; } .box_blue2 { background-color: #CB6CE6; } .pause-bg { background: #9e2df7 !important; } #maskmiddle { background: url('https://cdn.discordapp.com/attachments/997187268257251470/998956429333516298/imageedit_9_7084075537.png') center center no-repeat !important; background-size: contain !important; width: 100vh !important; height: 100vh !important; } .crosshair.normal { background: linear-gradient(#CB6CE6,#eb34e5,#000000); } .crosshair { border: 0.05em solid #ffffff; } .crosshair.powerfull { background: linear-gradient(#FF0000,#FF7F00,#FFFF00,#00FF00,#0000FF,#4B0082,#9400D3); } #createPrivateGame .roundme_sm, #settingsPopup .roundme_sm, #pickServerPopup .roundme_sm, #adBlockerVideo .roundme_sm { background: #CB6CE6 !important }` document.head.insertAdjacentHTML("beforeend", `<style>${css}</style>`)