Imgur remove share buttons

Removes the share box

目前为 2014-08-20 提交的版本,查看 最新版本

  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);