←back to thread

569 points todsacerdoti | 1 comments | | HN request time: 0.23s | source
Show context
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 #
1. 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='';});})();