DevTools Tips 

707 Followers
82 Following
332 Posts
Useful cross-browser DevTools tips for all web developers and designers
Websitehttps://devtoolstips.org
Source codehttps://github.com/captainbrosset/devtools-tips

The Selector Stats feature in Edge and Chrome DevTools is now much faster!

The feature lists the most costly CSS selectors in the Perf tool. But it used to slow down the recorded page quite a bit, especially for sites with many CSS rules.

That's no longer the case!

Check out the docs: https://learn.microsoft.com/en-us/microsoft-edge/devtools-guide-chromium/performance/selector-stats

Analyze CSS selector performance during Recalculate Style events - Microsoft Edge Developer documentation

Use the Selector Stats tab in the Performance tool to understand which of your CSS selectors are taking up the most time during Recalculate Style events.

It's 2025 and Firefox is still the only major browser with full-featured font and flexbox inspectors.
Improved logging in the DevTools console? On the Edge team we’ve got a proposal we’d love your input on. https://blogs.windows.com/msedgedev/2025/04/22/contextual-logging-with-console-context/
Contextual logging with console.context()

If you work on a large enough code base involving multiple teams at your organization, you probably have to deal with large amounts of logs when inspecting your webapp. This is an area that we're interested in improving, and are

Microsoft Edge Blog

TIL that the most recent Firefox will now show the font licensing information in the inspector. Nice!

#Firefox

There’s something very depressingly emblematic that Chrome Dev Tools’ annoying “Ask AI” sprinkles everywhere include one that pops up and *covers* the Accessibility Tree toggle.

#google #chrome #ai #accessibility

Want to investigate a quick fix in production directly?
No need to change your source file or deploy to a server, you can test your quick fix in DevTools directly!

Learn how: https://devtoolstips.org/tips/en/override-responses-with-files/

DevTools Tips

Override network responses with local files

DevTools Tips

The Network panel now allows overriding network request responses with local files.

https://bugzilla.mozilla.org/1849920

1849920 - Add support network response override for any request in the netmonitor

RESOLVED (jdescottes) in DevTools - Netmonitor. Last updated 2025-02-20.

We now* display fonts metadata (version, designer, vendor, license, …) in @FirefoxDevTools Inspector Fonts panel

* latest @firefoxnightly , `137.0a1 (2025-02-13)`

DevTools Tips

Create contextual console loggers

DevTools Tips

Lost in thousands of logs from all parts of your app?

Use the `console.context()` API to create contextualized loggers for each of your subsystems.

You can then filter the Console by typing "context:name-of-component".

➡️ https://devtoolstips.org/tips/en/create-contextual-console-loggers/

DevTools Tips

Create contextual console loggers

DevTools Tips