Hacker News - Hide your own karma

Hide your own karma in the top right corner (to avoid karma obsession)

// ==UserScript==
// @name         Hacker News - Hide your own karma
// @namespace    http://tampermonkey.net/
// @version      0.4
// @description  Hide your own karma in the top right corner (to avoid karma obsession)
// @author       Giovanni Tirloni
// @match        https://news.ycombinator.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    document.getElementById("karma").remove();
})();