您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
this script changes your roblox website
当前为
// ==UserScript== // @name visuals for roblox website // @version 2 // @description this script changes your roblox website // @author weyble // @match *://www.roblox.com/* // @namespace https://greasyfork.org/users/754911 // ==/UserScript== function weybleOnTop () { let css=` .dark-theme .rbx-divider{ background-color: gold; } .dark-theme{ background-color: black; } .dark-theme .content{ background-color: black; } .container-fluid{ background-color: black; } .dark-theme .rbx-upgrade-now .btn-secondary-md:visited{ background-color: black; } .dark-theme .chat-container .chat-main .chat-header{ background-color: black; } .dark-theme .rbx-upgrade-now .btn-secondary-md:visited{ color: white; } .gotham-font .font-title, .gotham-font .h1, .gotham-font h1{ color: gold; } .dark-theme .rbx-upgrade-now .btn-secondary-md{ display: none } .dark-theme .rbx-left-col{ background-color: black;}`; var e=document.createElement("style"); e.appendChild(document.createTextNode(css)); (document.querySelector("head")||document.documentElement).appendChild(e); console.log("roblox website has been changed succesfully, enjoy!")} setTimeout(()=>{weybleOnTop();},200); setTimeout(()=>{weybleOnTop();document.title="discord: weyble";},999); //in case theres internet problems