Imgur remove share buttons

Removes the share box

  1. // ==UserScript==
  2. // @name Imgur remove share buttons
  3. // @description Removes the share box
  4. // @namespace http://userscripts.org/users/scuzzball/scripts
  5. // @include http*://imgur.com/*
  6. // @version 1.0
  7. // @grant none
  8. // ==/UserScript==
  9.  
  10. var toRemove = document.getElementsByClassName("fixed-share-container")[0];
  11. toRemove.parentElement.removeChild(toRemove);