Every time I look at my typing score, I get frustrated. And that causes me to have low scores. That's why I don't type fast yet. Do you hav any tips about how I can type faster?
I have this chrome extention that can inject javascript into a webpage after it's loaded, and it hides the score from being shown (both the accuracy and the speed, which is how I like it, It doesn't however, hide the graph chart):
https://chrome.goog…After installing it, open it when you are at
https://www.keyhero…paste the following code into the text area in the extention and click save.
document.querySelector('div.col-md-4').hidden=true;;(function($,window){var intervals={};var removeListener=function(selector){if(intervals[selector]){window.clearInterval(intervals[selector]);intervals[selector]=null;}};var found='waitUntilExists.found';$.fn.waitUntilExists=function(handler,shouldRunHandlerOnce,isChild){var selector=this.selector;var $this=$(selector);var $elements=$this.not(function(){return $(this).data(found);});if(handler==='remove'){removeListener(selector);} else{$elements.each(handler).data(found,true);if(shouldRunHandlerOnce&&$this.length){removeListener(selector);} else if(!isChild){intervals[selector]=window.setInterval(function(){$this.waitUntilExists(handler,shouldRunHandlerOnce,true);},200);}} return $this;};}(jQuery,window));$('[data-reactid=".0.0.0.1.0.0.0"]').waitUntilExists(()=>{var el=document.querySelector('[data-reactid=".0.0.0.1.0.0.0"]');el.parentNode.removeChild(el);});
hope it works for you