web_browsers:chrome:hack_to_remove_css
This is an old revision of the document!
Web Browsers - Chrome - Hack to remove CSS
A quick hack to remove CSS from a web page.
Press F12 and then enter the following into the console:
var el=document.getElementsByTagName('*');for(var i=0;i<el.length; i++){if (el[i].getAttribute("type")=="text/css") el[i].parentNode.removeChild(el[i]); };
web_browsers/chrome/hack_to_remove_css.1586950874.txt.gz ยท Last modified: 2020/07/15 09:30 (external edit)