Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name UI revert
- // @version 0.1
- // @description Settings button will be above xp bar. Todo: none
- // @author Ravana
- // @match https://plug.dj/*
- // @require http://code.jquery.com/jquery-latest.js
- // ==/UserScript==
- var UIrevert = setInterval(function() {
- var plug3color = JSON.parse(localStorage.plugCubed);
- plug3color = "#"+plug3color.colors["you"];
- $(".info").css("display","block");
- $(".info").css("top","0px");
- $(".store.button").css("z-index","-1");
- $(".badge.button").css("z-index","-1");
- $(".inventory.button").css("z-index","-1");
- $(".profile.button").css("z-index","-1");
- $(".buttons > .settings.button").css("z-index","1");
- $(".buttons > .settings.button").css("left","-180px");
- $(".buttons > .settings.button").css("height","58%");
- $(".buttons > > .icon-settings-white").css("height","58%");
- $(".buttons > > .icon-settings-white").css("width","150px");
- $("#footer-user > .back").css("z-index","1");
- $(".buttons > .settings.button").css("opacity","0");
- $(".info > .name > span").css("color",plug3color);
- $("#twitter-menu").remove();
- $("#facebook-menu").remove();
- },1000);
- setTimeout(function() {
- window.clearInterval(UIrevert);
- },10000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement