Hide Review Stats

Hide the stats in the top right during sessions

Versione datata 09/10/2022. Vedi la nuova versione l'ultima versione.

// ==UserScript==
// @name         Hide Review Stats
// @namespace    http://tampermonkey.net/
// @version      1.0
// @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);
})();