Skip to content

Instantly share code, notes, and snippets.

@l3dlp
Last active July 24, 2016 23:36
Show Gist options
  • Save l3dlp/5bab83b897da45d86faa to your computer and use it in GitHub Desktop.
Save l3dlp/5bab83b897da45d86faa to your computer and use it in GitHub Desktop.
NoCSS Bookmarklet - Make any page readable; Usage: paste the code into a bookmark URL
javascript:(function(){for(i=0;i<document.styleSheets.length;i++){document.styleSheets.item(i).disabled=true;}all=document.getElementsByTagName('*');for(i=0;i<all.length;i++){var s=all[i].style;s.cssText='';s.width='';s.padding='1px';s.margin='1px';s.fontSize='12pt';s.lineHeight='150%';if(s.position=='absolute'||s.position=='relative'||s.position=='fixed')s.position='static';}var st=document.body.style;st.paddingLeft='100px';st.paddingRight='100px';st.backgroundImage='none';st.backgroundColor='#fff';st.color='#000';})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment