TV Guide Tidy

Cleans up the TV Guide listings page

  1. // ==UserScript==
  2. // @match http://www.tvguide.com/listings/
  3. // @name TV Guide Tidy
  4. // @description Cleans up the TV Guide listings page
  5. // @version 1.0
  6. // @namespace https://greasyfork.org/users/4821
  7. // ==/UserScript==
  8.  
  9. window.onload = function(){
  10.  
  11. var l = document.querySelector(".listings-w");
  12. var b = document.querySelector("body");
  13. l.parentNode.removeChild(l);
  14. b.innerHTML = "";
  15. b.appendChild(l);
  16. l.setAttribute("style", "position:absolute;top:0;left:0;width:100%;height:100%");
  17. document.querySelector(".gridDiv").setAttribute("style", "height:auto;overflow-x:hidden;border-bottom:solid 1px #DCDDCB");
  18.  
  19. };