Advertisement
Guest User

Untitled

a guest
Jul 3rd, 2015
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Torn City Browse Helper
  3. // @version 0.1
  4. // @author SilentDragon
  5. // @description Reduces Torn OpenMap Opacity Level
  6. // @include http://www.torn.com/city.php
  7. // ==/UserScript==
  8.  
  9. window.addEventListener ("load", changeOpacity, false);
  10.  
  11. function changeOpacity () {
  12. var myMap = document.getElementById('OpenLayers.Layer.TMS_30');
  13. myMap.style.cssText = "position: absolute; width: 100%; height: 100%; z-index: 100; left: 0%; top: 0%; opacity: 0.1; !important;";
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement