Hide Review Progress

Hides review progress until you finish

As of 2019-07-14. See the latest version.

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