IMGUR - Minimal Redesign

IMGUR - Minimal Redesign - Remove homepage images and other dross

  1. // ==UserScript==
  2. // @name IMGUR - Minimal Redesign
  3. // @namespace english
  4. // @description IMGUR - Minimal Redesign - Remove homepage images and other dross
  5. // @include http*://*imgur.com
  6. // @include http*://*imgur.com/
  7. // @version 2.3
  8. // @run-at document-end
  9. // @grant GM_addStyle
  10. // ==/UserScript==
  11.  
  12.  
  13. // Main - CSS hides two classes - video add box, and call to action box under it. - also social media
  14.  
  15. var style = document.createElement('style');
  16.  
  17. style.type = 'text/css';style.innerHTML = ' .Grid-column { display: none !important;} ';
  18. document.getElementsByTagName('head')[0].appendChild(style);
  19.