I’ve been working with DevTools for over 6 years now, and yeah, disabling JavaScript temporarily is super handy for debugging or testing fallbacks. You can do it directly in Chrome DevTools without affecting the whole browser. Here’s how I usually do it:
- Open DevTools (F12 or right-click → Inspect).
- Click the three-dot menu (top-right) → Settings.
- In the sidebar, go to Preferences, scroll to Debugger.
- Check Disable JavaScript.
- Refresh the page.
This disables JavaScript only for that tab, so you don’t mess with global settings. Handy when testing how your app behaves when a javascript time function doesn’t fire properly. Just uncheck it to turn JS back on. ![]()