Hide Review Stats

Hide the stats in the top right during sessions

La data de 09-10-2022. Vezi ultima versiune.

// ==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);
})();