Hacker News new | ask | show | jobs
by mschuster91 1048 days ago
This doesn't work for anything that runs a `<div id="root" style="display:none">` style hider, and in most cases it messes up the layout completely because it renders all images without explicit height/width attribute at full native resolution.
1 comments

Great point about inline styles. I've added a bit that removes them anywhere they're present:

  javascript:(function(){document.querySelectorAll("[style]").forEach(function(x){x.style=""});var i,x;for(i=0;x=document.styleSheets[i];++i)x.disabled=true;})();