hide_slashdot_video_bytes

This hides the "video-bytes"" thumbnails on Slashdot

  1. // ==UserScript==
  2. // @name hide_slashdot_video_bytes
  3. // @namespace SamPittman
  4. // @include http://slashdot.org/*
  5. // @version 1
  6. // @grant none
  7. // @description This hides the "video-bytes"" thumbnails on Slashdot
  8. // ==/UserScript==
  9.  
  10. //console.log('= Hide video-bytes =');
  11.  
  12. var badSpan = document.evaluate("//*[@class='units-12 river-group']",
  13. document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
  14. var badHtmlElement = badSpan.snapshotItem (0);
  15. //console.log(badHtmlElement);
  16. badHtmlElement.style.height = 0;
  17. badHtmlElement.style.visibility = 'hidden';