Chrome DevTools: From friction to flow

Chrome for Developers
16 May 202416:28

Summary

TLDRIn this engaging video, Jecelin Yee explores 12 new features in Chrome DevTools designed to streamline web development and debugging. From mocking API responses and debugging disappearing elements to enhancing CSS and performance insights, the tools aim to ease the developer's workflow. With improved UI testing, better code navigation, and AI-generated error explanations, DevTools continues to innovate, making web development more efficient and less daunting.

Takeaways

  • 🛠️ The Chrome DevTools team has addressed common frustrations in web development by introducing a series of improvements aimed at smoothing the workflow.
  • 🔍 They have covered 12 improvements designed to simplify UI testing, enhance understanding, maintain focus, and identify performance optimization opportunities.
  • 📈 The improvements include the ability to mock API responses and debug 404 errors, which can be particularly useful when backend APIs are still under development.
  • 🖌️ CSS debugging has been made easier with new features like the 'Emulate a focused page' checkbox to address disappearing elements and an editor for adjusting linear transitions.
  • 📄 DevTools now automatically pretty-prints minified code, providing better code folding and indentation markers for easier navigation through the code structure.
  • 🌐 Enhanced syntax highlighting for various content types, including JSX, Angular, Vue, and different JSON subtypes, has been added to improve code readability.
  • 🔗 Hovering over CSS properties now shows documentation and a 'Learn more' link, aiding in understanding unfamiliar properties and their effects.
  • 🛑 The 'info' icon next to CSS rules provides insights into why certain rules may not have the expected UI effect, saving time during debugging.
  • 🚫 DevTools has introduced options to hide source map warnings, network requests from extensions, and content scripts, reducing noise and improving focus on relevant issues.
  • 🔄 The performance panel has been updated with features like precise zooming and the ability to edit and hide specific data tracks for a clearer overview of performance data.
  • 👀 New detective arrows in the performance panel help trace the trail of events back to their source, providing a clearer picture of how issues unfold.
  • 🚀 The DevTools team is actively working on further enhancements, with a focus on four major areas to improve the debugging experience even more in the future.

Q & A

  • What is the main theme of the video presented by Jecelyn Yeen?

    -The main theme of the video is to introduce and demonstrate 12 new improvements in Chrome DevTools aimed at making UI testing easier, boosting understanding, maintaining focus, and identifying performance optimization opportunities.

  • What metaphor does Jecelyn use to compare web development to real life?

    -Jecelyn compares web development to riding a bike and encountering unexpected bumps, likening the debugging process to these bumps that slow us down and test our patience.

  • What common frustrations did the Chrome DevTools team identify from user feedback?

    -The Chrome DevTools team identified four common frustrations: difficulty in debugging, feeling lost in data, troubleshooting disappearing elements, and handling performance issues.

  • How does the new 'Overwrite Content' feature help in the debugging process?

    -The 'Overwrite Content' feature allows developers to mock API responses by right-clicking on the API, selecting 'Overwrite Content,' pasting in mock data, and saving it. This unblocks the development process when the backend is not ready.

  • What new CSS debugging tool is introduced in the video?

    -The video introduces the 'Emulate a focused page' checkbox in DevTools, which helps in debugging disappearing elements by emulating a focused state, making it easier to inspect elements that disappear on hover or focus.

  • What improvement has been made to the handling of minified code in DevTools?

    -DevTools now automatically pretty prints minified code, saving developers time and making it easier to navigate and understand the code structure with features like code folding and indentation markers.

  • How does DevTools assist with learning and understanding CSS properties?

    -DevTools shows documentation when hovering over CSS properties with a 'Learn more' link, providing code examples and explanations. It also highlights issues with CSS rules that are syntactically correct but do not work due to other constraints.

  • What feature helps developers understand HTTP status codes and headers more easily?

    -The network panel in DevTools now shows friendly tooltips for HTTP status codes and headers, helping developers quickly understand their meanings and implications.

  • What new option does DevTools provide for managing network requests from extensions?

    -DevTools now includes an option to hide network requests from Chrome extensions, reducing noise in the network panel and making it easier to focus on relevant requests.

  • How does DevTools improve the debugging of performance issues?

    -DevTools has revamped the performance panel to align the zoom timeline with data, allowing precise zooming and navigation. It also includes features to collapse and hide tracks and entries, helping developers focus on relevant performance data.

  • What experimental feature is being tested to help with understanding console errors?

    -DevTools is testing an AI-generated feature that provides personalized explanations and potential solutions for console errors, helping developers understand and fix issues more efficiently.

  • How has the handling of third-party scripts been improved in DevTools?

    -DevTools now ignores content scripts from extensions and scripts in the node modules folder by default, preventing them from appearing in the stack trace and during breakpoint debugging, allowing developers to focus on their own code.

  • What enhancements have been made to the display of CSS specificity?

    -DevTools now shows the specificity of CSS selectors, which helps developers understand the weight and ranking of their CSS rules, making it easier to debug and apply styles correctly.

  • What are the four major focuses for DevTools' performance tooling in the future?

    -The four major focuses for DevTools' performance tooling are improving the performance panel foundation, making data tracks more manageable, enhancing zoom functionality, and providing more precise and helpful performance data.

Outlines

00:00

🛠️ Chrome DevTools Improvements Overview

Jecelyn Yee introduces a series of improvements to Chrome DevTools aimed at enhancing web developers' debugging experience. She highlights 12 updates designed to simplify UI testing, improve understanding, maintain focus, and identify performance optimization opportunities. The script includes a practical demonstration of debugging a 404 error, mocking API responses, and using new features like 'Emulate a focused page' to address disappearing elements. It also touches on the ease of adjusting CSS transitions and the automatic pretty-printing of minified code, which collectively aim to streamline the workflow of web developers.

05:02

📚 Enhancing Learning and Debugging with DevTools

This section delves into the educational aspect of DevTools, showcasing how it assists developers in understanding complex CSS properties and debugging issues. New features include on-hover documentation and 'Learn more' links for CSS properties, which provide additional insights and examples. The script also addresses common CSS pitfalls and how the info icon next to rules can offer clarity on why certain styles aren't applied. Furthermore, it introduces a new personalized explanation feature in the console that uses AI to generate potential solutions for errors, exemplified by dealing with a CORS policy issue.

10:05

🎯 Focusing on Debugging with Improved DevTools Features

The script discusses updates that help developers focus on their debugging tasks by filtering out unnecessary information. It covers the removal of source map warnings, the option to hide network requests from extensions, and the new ability to ignore content scripts and third-party libraries in the debugger. These features aim to declutter the development environment, allowing for a more efficient identification of the root causes of issues and an improvement in site performance. The paragraph also previews the revamped performance panel with its new UI features that facilitate a more precise and organized approach to debugging performance issues.

15:06

🚀 Upcoming Enhancements and Community Engagement

The final paragraph outlines the DevTools team's vision for the future, emphasizing four major focuses that will drive their improvements in the coming year and beyond. It invites viewers to share their favorite new features and to explore them in more detail through provided links. The script also encourages users to stay informed about updates through various channels and to submit bug reports or feature requests to further enhance the debugging experience. It concludes with well-wishes for the viewers' web development journey and a sign-off until the next meeting.

Mindmap

Keywords

💡Web Development

Web development is the process of creating websites and web applications. It involves a range of tasks including designing, coding, and publishing. In the video, web development is likened to a bumpy bike ride, with 'ouch moments' representing the unexpected challenges developers face, such as debugging issues, which are central to the video's theme of overcoming obstacles in the development process.

💡Debugging

Debugging refers to the process of finding and resolving bugs or defects that prevent correct operation of computer programs. In the script, debugging is a core theme, with the speaker discussing various tools and techniques within Chrome DevTools to ease the debugging process, such as mocking data and inspecting disappearing elements.

💡Chrome DevTools

Chrome DevTools is a set of web authoring and debugging tools built directly into the Google Chrome browser. The video focuses on improvements made to these tools to enhance developers' workflow. For instance, the script mentions the ability to overwrite API responses and emulate focused page states, showcasing the utility of DevTools in debugging and development.

💡Mock Data

Mock data is fictional data used to simulate real data during development and testing. The script describes a scenario where the backend API is still under development, and the speaker uses mock data to unblock the development process, illustrating a common use of mock data to facilitate front-end development before the back-end is ready.

💡CSS

CSS (Cascading Style Sheets) is a stylesheet language used for describing the presentation of a document written in HTML or XML. The video discusses CSS as a tricky aspect of web development, with the speaker mentioning the difficulty of keeping up with various CSS properties and how DevTools helps in understanding and debugging CSS issues, such as alignment problems with names and images.

💡Performance Optimization

Performance optimization involves improving the speed, efficiency, and usability of a website or application. The video touches on this concept by discussing the use of DevTools to identify performance issues and optimize them. The script mentions the performance panel and how it has been updated to make it easier to navigate and understand the data, aiding in performance debugging.

💡Source Maps

Source maps are files that map from a minified or compiled file back to its original source. In the script, the speaker discusses improvements in DevTools related to source maps, such as the ability to hide source map warnings, which can clutter the console and distract from real errors, thus enhancing the debugging experience.

💡Breakpoints

A breakpoint in a debugger is a point at which the execution of a program is paused, allowing the developer to examine the state of the program. The video script mentions the use of breakpoints and how DevTools has improved the experience by allowing the evaluation of source variables, making it easier to understand the current value of a variable during debugging.

💡AI-Generated Explanations

AI-generated explanations refer to the use of artificial intelligence to create understandable descriptions and potential solutions for errors or issues. The script highlights a feature in DevTools that uses AI to provide personalized explanations for console errors, offering clarity and aiding in the debugging process, as demonstrated when the speaker encounters a CORS policy issue.

💡Syntax Highlighting

Syntax highlighting is a feature of text editors that displays text, especially source code, in different colors and fonts depending on the category of terms. The video mentions that DevTools has improved syntax highlighting for various content types, which helps developers navigate and understand code more efficiently, particularly when inspecting different types of files.

💡UI Testing

UI testing is the process of verifying that a software application's user interface operates as intended. The script discusses improvements made in DevTools to make UI testing easier, such as the ability to emulate a focused page to debug disappearing elements, which is crucial for ensuring that the user interface behaves correctly across different scenarios.

Highlights

Introduction to the new improvements in Chrome DevTools aimed at easing web development frustrations.

Overview of 12 improvements designed to simplify UI testing, enhance understanding, maintain focus, and identify performance optimization opportunities.

Explanation of how to mock data to unblock development when backend APIs are still under development.

Demonstration of the new 'Emulate a focused page' feature for debugging disappearing elements.

Introduction of the modern CSS linear easing function for smoother transitions.

Automatic pretty-printing of minified code in DevTools to ease code exploration.

Enhanced syntax highlighting for various content types including JSX, Angular, Vue, and JSON subtypes.

New feature to show documentation and 'Learn more' links when hovering over CSS properties.

Use of the info icon to understand why certain CSS rules do not produce UI effects.

Explanation of CSS selector specificity and its impact on styling.

Personalized error explanations and potential solutions generated by AI in the console.

Ability to evaluate variables with source names in minified code for easier debugging.

New UI features in the performance panel for more precise zooming and navigation.

Customization options for the performance panel to focus on relevant data tracks.

Introduction of new arrows in the performance panel to trace event sources and their flow.

Plans for further enhancements in performance tooling with a focus on four major areas.

Encouragement for users to provide feedback and feature requests to improve the debugging experience.

Conclusion and sign-off, wishing developers a smooth web development and debugging journey.

Transcripts

play00:00

[MUSIC PLAYING]

play00:09

JECELYN YEEN: Phew, I made it.

play00:11

What a beautiful, sunny day, even though my bike right

play00:15

here was a bit bumpy?

play00:17

I almost fell from the bike and had

play00:20

to carry it over a fallen tree.

play00:23

Talk about ouch moments, but, hey,

play00:26

isn't that just like web development?

play00:28

Those unexpected bumps while debugging are the ouch moments

play00:33

that slow us down and test our patience,

play00:36

but guess what last year, the Chrome DevTools team identified

play00:40

four of these common frustrations,

play00:43

from why can't I debug that till I'm feeling lost in data?

play00:48

We took a deep dive, analyze your feedback,

play00:51

and roll out a series of improvements

play00:53

to smoothen your workflow.

play00:56

I will be covering 12 improvements today, each of them

play01:00

is designed to make UI testing easier,

play01:03

boost your understanding, help you stay focused,

play01:06

and identify performance optimization opportunities.

play01:10

Feel free to fast-forward to the chapter that interests you.

play01:13

And just a hint, the top row is my favorite one.

play01:17

There are game changers.

play01:19

All right.

play01:20

Enough talk.

play01:21

It's time to explore them in action, one by one.

play01:25

Let's kick things off with the made easy team and bubble tea.

play01:37

Mhm, bubble tea is tasty.

play01:39

Let's head over to our site and search for the one with bubble.

play01:43

Uh-oh, there's no result returned.

play01:46

Let's open DevTools and debug that.

play01:49

Look here.

play01:50

The response is 404.

play01:52

All right.

play01:53

Now I remember.

play01:55

The backend team is still working on the API.

play01:58

That's why it's 404.

play02:00

Since we agree on a common response structure,

play02:02

let's mock the data to unblock us.

play02:05

Right-click on the API and select Overwrite Content.

play02:09

With that, paste in your mock data and save it.

play02:13

Let's try to search again to see if it works.

play02:16

Cool.

play02:17

That's my favorite list of tea.

play02:20

Quick tip here, you can mock the response headers too.

play02:23

For example, you can add a new header

play02:26

to test the permissions policy or edit an existing content

play02:30

security policy to test out different security mitigation.

play02:35

Look closer at the list.

play02:36

There is something wrong with the name and the image here.

play02:39

They are not aligned.

play02:41

We should fix the CSS.

play02:43

Let's right-click to inspect that.

play02:46

Oops, the list just disappeared.

play02:50

Huh, maybe it's the hover effect.

play02:52

Let's toggle that in the Styles tab and test again.

play02:57

Nope, it still doesn't show.

play03:00

Hmm, what should I try next?

play03:03

Oh, there is a new Emulate a focused page checkbox here.

play03:07

What is that for?

play03:10

Oh, the two teams mentioned commonly used

play03:13

for debugging disappearing elements.

play03:15

That's it.

play03:16

Let's enable that and inspect the list again.

play03:19

Now it works.

play03:20

Time to try out some CSS and fix that once and for all.

play03:25

Another quick tip here, adjusting linear transition

play03:29

is much easier than before.

play03:31

Modern CSS supports linear easing function.

play03:34

It accepts a number of stops separated by commas.

play03:39

Manually adding numbers is cumbersome.

play03:42

You can open the editor, add multiple stops,

play03:45

drag them around, and test the transition on the fly.

play03:50

As a developer, we spend a large amount

play03:53

of time looking at the code.

play03:55

That's why having some good default

play03:58

settings to help us explore the code would be great.

play04:02

I appreciate that the DevTools now pretty prints minified code

play04:06

automatically.

play04:07

This saved me a lot of clicks, especially when I'm

play04:10

debugging production code.

play04:13

The combination of code folding and indentation markers

play04:16

make it easier to expand or collapse code sections

play04:20

and navigate the code structure.

play04:23

Over the past year, DevTools also

play04:25

added better syntax highlights for a lot more content types,

play04:29

like JSX, angular, vue, different json subtypes,

play04:34

and more.

play04:36

This seemingly subtle settings are the unsung heroes

play04:39

of our workflow quietly improving

play04:42

our lives with each and every line of inspected code.

play04:46

Mocking responses, inspecting disappearing dropdowns,

play04:50

fixing animations, diving in your code,

play04:54

DevTools empowers every step of your UI debugging journey

play04:58

with ease speed and efficiency.

play05:02

Next, let me show you how DevTools helps us understand.

play05:11

There is so much to learn in web development.

play05:15

Not only do we need to learn different syntax and rules,

play05:18

we need to understand the relationship

play05:21

and why our program throws errors.

play05:24

CSS is a tricky one.

play05:26

There are tons of old and new CSS properties.

play05:29

Not sure about you, but I certainly can't keep up

play05:32

and can't memorize all of them.

play05:35

Like this one, what is scroll timeline,

play05:38

user select, margin block, doesn't ring a bell,

play05:42

but I would love to learn more.

play05:44

DevTools now shows documentation when

play05:47

we hover over the property with a Learn more link.

play05:50

We can click to explore further and view code examples.

play05:54

More often than not, I am also struggling

play05:57

to understand why certain CSS rules are totally valid,

play06:01

syntax is correct, but they just don't work.

play06:05

The info icon next to the rules is very helpful.

play06:08

In this example, although the bottom is a correct property,

play06:13

it won't have any UI effect because its position is static.

play06:17

This alone saved me so much time to debug,

play06:20

especially when I have complex CSS.

play06:24

Here is another common one for me.

play06:26

The height property doesn't work with inline elements like span.

play06:31

I can go on and on about the different rules that bites me.

play06:35

A quick tip here.

play06:36

Can you guess the final background color?

play06:39

Well, although it's fun to guess,

play06:41

we can use the Styles tab to understand the winning color

play06:45

and hover over the selector to understand

play06:47

its specificity, which is the algorithm used

play06:51

by browsers to rank CSS selectors by giving them

play06:55

a certain weight in three digits.

play06:58

Let's go back to our bubble tea page.

play07:00

This time, the backend API is ready,

play07:03

so we don't need to mock the response anymore.

play07:06

Let's verify that.

play07:08

Oh, it's not working.

play07:10

Looking at the console, the URL seems

play07:13

to be blocked by the course policy.

play07:16

What is that and how can I fix it?

play07:19

The natural next step for me is to Google it to find the answer,

play07:24

but wait.

play07:25

There's a new icon here.

play07:27

Maybe that could help us.

play07:29

Let's try it out.

play07:31

Look at that.

play07:32

It generates a personalized explanation,

play07:35

a potential solution, and even provide an option to search.

play07:40

That's pretty cool.

play07:42

Back to the console, you can see the data DevTools

play07:45

used to understand the message.

play07:47

In fact, DevTools show you that right at the beginning,

play07:51

giving you full clarity.

play07:53

Let's scroll up to the explanation.

play07:55

Now I know the error has something

play07:57

to do with the network response header

play07:59

and that needs to be fixed on the server.

play08:02

Let me take a screenshot and report that

play08:05

to our backend engineer.

play08:07

Huh, while waiting for the fix, I

play08:10

can combine the knowledge I learned earlier

play08:12

to mock just the response headers temporarily.

play08:16

Let's copy the code snippet, look for the URL,

play08:19

and overwrite our response header.

play08:22

Refresh the page and the error is gone.

play08:26

By the way, you can use that to understand the warning too.

play08:30

Just a heads up, this feature is still experimental

play08:34

and only available in some regions for now.

play08:37

As you might guess, these helpful explanations

play08:40

are actually generated with AI.

play08:44

So did the explanation make sense

play08:46

or did it just leave you scratching your head?

play08:49

Show us your thumb and let us know what you think.

play08:53

We are excited to keep exploring how AI can make debugging easier

play08:57

right in DevTools.

play09:00

Back to our code, when you are debugging with breakpoints,

play09:04

sometimes you might want to understand the current value

play09:07

of a variable.

play09:09

It was hard previously if you have minified code.

play09:12

You need to understand the minified name of the variable

play09:16

in order to evaluate that.

play09:18

Using the source variable would throw an error.

play09:22

That was improved, you can evaluate with source variables

play09:25

now.

play09:26

Another quick tip to help me understand,

play09:29

if you find it hard to memorize the HTTP status code,

play09:33

the network panel now shows a friendly tooltip for that.

play09:36

The same applies to the Headers tab.

play09:40

Let's take a quick break.

play09:42

Grab your drinks and let's relax for a second.

play09:46

Remember, fixing bugs isn't just about seeing tons of stuff.

play09:51

It is also about clearing away distractions and stay focused.

play09:57

That's what brings us to the next theme.

play10:04

Here is another improvement on source maps.

play10:07

This time, instead of using them,

play10:10

we want to hide them instead.

play10:12

I mean, probably you have seen this warning before,

play10:16

especially if you installed a lot of extensions.

play10:19

Many web applications don't deploy source maps

play10:22

to production.

play10:23

Therefore, DevTools can't load them.

play10:26

The thing is you can't fix the missing maps,

play10:29

and they just add noise, making it harder

play10:32

to spot real console errors.

play10:35

This source map warnings are gone now.

play10:37

Don't worry.

play10:38

You can still find them in the developer resources panel.

play10:42

And if you open a file with source map issues,

play10:45

a warning will appear too.

play10:48

Another annoyance for folks with a lot of extensions

play10:51

is on the network panel.

play10:53

These extensions make network requests

play10:56

and thus show up in the network panel.

play11:00

We receive repeated requests to hide them from the list.

play11:03

That makes sense, and you should be able to do that.

play11:07

Turn on this option and DevTools will hide all the URLs, starting

play11:10

with Chrome extensions.

play11:13

Another pet peeve on third-party extensions,

play11:16

when doing breakpoint debugging, DevTools previously

play11:19

would step into the content scripts injected by extensions,

play11:23

which is not what I want.

play11:25

I just want to debug and step into my own code.

play11:29

Same goes for the third-party libraries in the node modules.

play11:32

For example, I don't want to debug the code

play11:35

from react, angular, nor the material UI component library.

play11:40

I don't want to see them in the stack trace

play11:42

either, as it makes it hard for me to pinpoint issues.

play11:46

Here is the good news.

play11:47

DevTools now ignore content scripts by default,

play11:50

as well as the scripts in the node modules folder.

play11:54

With that, DevTools hides them in the stack trace,

play11:57

and you won't be stepping into those files anymore.

play12:00

Look here.

play12:01

DevTools grayed out the ignore files too.

play12:04

In case you still want them, you can right click to ignore them.

play12:09

With more stuff hidden and ignored,

play12:11

we have a better chance to identify

play12:13

the root cause and spend time improving

play12:16

the site's performance.

play12:17

That's what we are going to talk about next.

play12:23

This is how I feel every time I need

play12:26

to debug performance issues.

play12:28

The performance panel is packed with a lot of wonderful data,

play12:32

but let's be honest.

play12:34

Diving deep into page load and runtime issues

play12:37

can feel like navigating a jungle.

play12:40

We know that DevTools team is at work this year

play12:44

revamping the panel's foundation and preparing

play12:47

for some awesome updates.

play12:49

And the good news, some new UI features

play12:52

are already here to make our life slightly easier.

play12:56

If you ever zoom in on the timeline

play12:59

and feel like you were lost in space, you are not alone.

play13:02

It used to be confusing because the zoom timeline and the data

play13:07

is not aligned.

play13:08

It would be cool to really zoom in

play13:11

on just the part we care about.

play13:13

Well, your wish is granted.

play13:16

Now you can zoom in with precision, diving

play13:19

deeper and deeper without losing your way.

play13:22

Jump back to parents levels with a single click,

play13:25

always knowing that the timeline and data are perfectly in sync.

play13:29

That's great, but check out all these data tracks.

play13:34

I'm losing count.

play13:36

Even a simple web page can have at least eight tracks.

play13:40

Depending on what you are debugging,

play13:42

you might not need the whole orchestra.

play13:45

Maybe you just want to focus on the violin solo

play13:48

or crank out the drums.

play13:50

Let's do that.

play13:51

Click on the Edit button.

play13:53

You can reshuffle the track like a master conductor.

play13:56

Move them up, move them down, or even remove them completely

play14:00

if they are just creating noise.

play14:03

Awesome.

play14:04

You have narrowed it down to just the main track,

play14:08

but wait, those entries still look pretty crowded, right?

play14:13

If you know what you are hunting for,

play14:16

you can collapse and hide entries you don't need.

play14:19

Here are the different hides options.

play14:22

You can use shortcuts to hide things quicker too.

play14:25

Here, I'm going to press C to hide all the children,

play14:30

R to collapse the repeated entries,

play14:32

# and # to remove a couple of functions.

play14:36

See that.

play14:37

Now the entries that need attention

play14:39

are right in front of our face.

play14:41

No need to constantly scroll up and down to find them.

play14:46

Did you spot those arrows right there?

play14:49

Yup, these are new too.

play14:52

They are like little detectives helping

play14:54

you to follow the trail of events

play14:56

all the way back to the source.

play14:59

Now you can see exactly where things started

play15:01

and how they unfolded.

play15:04

And this is just the start.

play15:06

We have grand plans for performance tooling,

play15:08

with four major focuses fueling our vision this year and beyond.

play15:13

So stay tuned.

play15:15

You can be sure there are more exciting innovations coming

play15:18

your way.

play15:23

There are a lot of improvements we have covered.

play15:26

Tell us which one you like the most in the comments below.

play15:30

Check out the links of each feature in the video description

play15:33

to dive into them further.

play15:36

In fact, there are even more enhancements

play15:38

we landed last year to improve your debugging experience.

play15:42

It is definitely not possible to cover all of them

play15:45

in this session.

play15:47

The best way to stay up to date with these improvements

play15:50

are through our social media, RFC, blog, and YouTube channel.

play15:56

Remember to send us a bug report or a feature request

play15:59

if you wish us to fix them or improving your debugging

play16:03

experience even further.

play16:05

That's all for now.

play16:07

I wish you a smooth ride in your web development and debugging

play16:10

journey.

play16:10

I got to go.

play16:12

See you soon.

play16:13

Ciao.

play16:13

[MUSIC PLAYING]

Rate This

5.0 / 5 (0 votes)

Related Tags
Web DevelopmentDebugging ToolsChrome DevToolsUI TestingPerformance OptimizationCSS PropertiesAPI MockingCode NavigationSource MapsConsole Errors