Hides review progress until you finish
As of
// ==UserScript==
// @name Hide Review Progress
// @namespace http://tampermonkey.net/
// @version 1.0.0
// @description Hides review progress until you finish
// @author Iaro
// @match https://www.wanikani.com/review/session
// @grant none
// ==/UserScript==
(function() {
//Does the thing!
$('#progress-bar').css('visibility', 'hidden');
$('#stats').css('visibility', 'hidden');
})();