←back to thread

569 points todsacerdoti | 2 comments | | HN request time: 1.375s | source
1. xnx ◴[] No.42601766[source]
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): >>42609200 #
2. fwn ◴[] No.42609200[source]
I use this bookmarklet to disable all CSS styling:

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