Tagged “devtools”
-
TIL Accessibility in Devtools accessibility devtools
You can enable the Accessibility Devtool (currently in experiments mode) to do screenreader testing.
-
Grouping console messages together javascript devtools
You can wrap console messages together using console.group('name') and console.groupEnd('name')
-
TIL about console.assert() javascript devtools
You can instead use console.assert() to show conditional errors
-
TIL about wrapping a variable in curly brackets devtools javascript
Output the key:value pair using curly brackets
-
TIL Find unused JavaScript javascript devtools optimization
Chrome's Coverage panel allows you to quickly locate JavaScript (and CSS) code that has — and has not — been used. To start, open Coverage from the More tools sub-menu in the DevTools menu
-
TIL Event Listeners in devtools javascript events devtools
Today I learned that you can identify the Event Listener directly in the Devtools!
-
TIL lighthouse scores are simulations, not real world seo devtools
So if you run Lighthouse on your high-powered developer machine and get great scores, that may not be reflective of what the users experience in the real world, and so what Google will use to measure your website user experience.
-
TIL Adding your own custom panel in Devtools devtools
I was always curious how chrome extensions like `React Devtools` or `Vue Devtools` magically pop into the Devtools section.
-
TIL of how to generate ASCII folder structures devtools
It's common to explain or discuss a file system structure
See all tags.