Monster iLive

Get the full screen

  1. // ==UserScript==
  2. // @name Monster iLive
  3. // @version 0.05
  4. // @description Get the full screen
  5. // @author TracerMan
  6. // @include *://*.ilive.to/view/*
  7. // @exclude *://www.ilive.to
  8. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
  9. // @grant GM_addStyle
  10. // @namespace https://greasyfork.org/users/59
  11. // ==/UserScript==
  12.  
  13. //--- Remove Junk
  14. $("#ad_overlay").remove();
  15. $("#cometchat*").remove();
  16. $("#ad_footer").remove();
  17. $(".center").remove();
  18. $("#belowplayer").remove();
  19. $(".rightcol").remove();
  20. $("#header").remove();
  21. $("#nav").remove();
  22. $("#footer").remove();
  23. $("#fb-root").remove();
  24. $("table").remove();
  25. $(".fb_iframe_widget").remove();
  26. $(".fb_iframe_loader").remove();
  27. $(".fb-like").remove();
  28. $("p").remove();
  29. $("script").remove();
  30. $("span").remove();
  31.  
  32. //--- Page Modifications
  33. $("#wrapper").css("margin", "0px").css("width", "auto");
  34. $("#content").css("margin", "0px").css("min-height", "0px").css("padding", "0px");
  35. $("#main").css("padding", "0px");
  36. $("#player_container").css("z-index", "999").css("height", "100%").css("width", "100%").css("position", "fixed").css("top", "0").css("bottom", "0").css("left", "0").css("right", "0");
  37. $(".fb_iframe_widget").css("opacity", "0");