Wanikani - Hide Session Stats

Hide the stats in the top right during sessions

// ==UserScript==
// @name         Wanikani - Hide Session Stats
// @namespace    http://tampermonkey.net/
// @version      1.2
// @description  Hide the stats in the top right during sessions
// @author       Danylo
// @match        https://www.wanikani.com/review/session
// @match        https://www.wanikani.com/lesson/session
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var stats = document.getElementById("stats");
    stats.parentNode.removeChild(stats);
})();