0

I do not have access to the code. I want to load a page and stop it prior to every CSS file that is loaded. Is this possible in DevTools or is there another resource?

notthehoff
  • 1,172
  • 1
  • 12
  • 28

1 Answers1

0

The Web Developer plugin for Firefox and Chrome is able to do this

Once you have installed the plugin the option is available in the CSS menu. For example, CSS > Disable Styles > Disable All Styles

Check this out for more details: How to disable CSS in Browser for testing purposes

rubentd
  • 1,245
  • 11
  • 25
  • This is the link for the chrome extension: https://chrome.google.com/webstore/detail/web-developer/bfbameneiokkgbdmiekhjnmfkcnldhhm – rubentd Nov 02 '18 at 13:12
  • The problem, is more related to synchronous vs asynchronous calls, so it isn't that I want to enable/disable styling... it is that on render, i want to stop before each css file is loaded. – notthehoff Nov 02 '18 at 13:15
  • Then maybe you can try blocking requests like this: https://umaar.com/dev-tips/68-block-requests/ – rubentd Nov 02 '18 at 13:24