NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name gaia no facebook buttons // @namespace kittyfluff // @version 0.1 // @match *.gaiaonline.com/forum/* // ==/UserScript== // removes all facebook-buttons from forum topics var smallButtons = document.getElementsByClassName("gaia-fb-share-button avatar-forum-share gAutoTooltip bottom-center"), largeButtons = document.getElementsByClassName("gaia-fb-share-button post-share"), lastItem = largeButtons.length; for (var item = 0; item < lastItem; item++) { smallButtons[item].setAttribute("style", "display: none !important"); largeButtons[item].setAttribute("style", "display: none !important"); }