// ==UserScript== // @name kbin Hide Downvotes and Reputation // @namespace http://tampermonkey.net/ // @version 1.0 // @description Hides downvotes, and reputation on user pages // @author artillect // @match https://kbin.social/* // @icon https://www.google.com/s2/favicons?sz=64&domain=kbin.social // @grant GM_addStyle // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; GM_addStyle(` .vote__down { display: none; } #sidebar > section.section.user-info > ul > li:nth-child(2) { display: none; } `); })();