Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name TW looks
- // @namespace http://tampermonkey.net/
- // @version 2.0
- // @description try to take over the world! I will
- // @author Jessey
- // @match https://*.tribalwars.net/*
- // @exclude https://www.tribalwars.net/*
- // @grant none
- // @run-at document-end
- // @updateURL https://pastebin.com/raw/HJUFEZPv
- // @downloadURL https://pastebin.com/raw/HJUFEZPv
- // ==/UserScript==
- (function() {
- 'use strict';
- var opacity = 0.9;
- var url = "url('https://image.ibb.co/hVp9yS/yDXeQ3D.gif')"; //cat
- //var url = "url('http://image.ibb.co/gJwzKc/Death_Static.gif')"; //vhs static
- $("body").css("background-image", url);
- $(".maincell").css("opacity", opacity);
- $(".bg_right").css("opacity", opacity);
- $(".bg_left").css("opacity", opacity);
- $(".bg_bottomcenter").css("opacity", opacity);
- $(".server_info").css("margin-bottom", "0px");
- })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement