Advertisement
jezzye13

TW looks

May 3rd, 2018 (edited)
425
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         TW looks
  3. // @namespace    http://tampermonkey.net/
  4. // @version      2.0
  5. // @description  try to take over the world! I will
  6. // @author       Jessey
  7. // @match        https://*.tribalwars.net/*
  8. // @exclude      https://www.tribalwars.net/*
  9. // @grant        none
  10. // @run-at       document-end
  11. // @updateURL    https://pastebin.com/raw/HJUFEZPv
  12. // @downloadURL  https://pastebin.com/raw/HJUFEZPv
  13. // ==/UserScript==
  14.  
  15. (function() {
  16.     'use strict';
  17.  
  18.     var opacity = 0.9;
  19.     var url = "url('https://image.ibb.co/hVp9yS/yDXeQ3D.gif')"; //cat
  20.     //var url = "url('http://image.ibb.co/gJwzKc/Death_Static.gif')"; //vhs static
  21.     $("body").css("background-image", url);
  22.     $(".maincell").css("opacity", opacity);
  23.     $(".bg_right").css("opacity", opacity);
  24.     $(".bg_left").css("opacity", opacity);
  25.     $(".bg_bottomcenter").css("opacity", opacity);
  26.     $(".server_info").css("margin-bottom", "0px");
  27.  
  28. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement