Previously I've used the "disable styles" shortcut key in the Firefox web developer extension to make unfriendly websites more tolerable. Today, I wish Chrome had a shortcut key for enabling reader mode to do the same.
replies(1):
javascript:(function(){var styles=document.querySelectorAll('style,link[rel="stylesheet"]');styles.forEach(function(style){style.disabled=true;});document.body.querySelectorAll('*').forEach(function(el){el.style.cssText='';});})();