This document serves as the Chrome DevTools Playbook and thereby provides guidance on how to work with Chrome DevTools, the types of Chrome DevTools support available, how you and your team can take advantage of that support to contribute features, and how to get help when in doubt of the type of support needed or if you need more support.
- If you are a Googler see go/chrome-devtools/work-with-us for additional information.
- If you're a first-time contributor and would like some guidance to begin with, please jump to the First Time Contributor section at the end of this document.
- If you are only looking for DevTools documentations, here is the list.
To help us understand your needs and collaborate effectively, please follow the steps below.
Answer three preliminary questions:
- What level of debuggability do you need?
- What is the scope of your feature request?
- What is your preferred collaboration mode?
Depending on your answers, you can do one of the following:
- Contact DevTools team to discuss your feature request, OR
- Directly design your feature, write your design doc and share with DevTools team, OR
- Directly write your CL(s) and submit them for review.
The team uses a public mailing list for technical discussions, questions, and announcements.
- Email address: devtools-dev@chromium.org
- Web archives: devtools-dev
For certain topics, there are dedicated points of contact (PoCs) within the DevTools team, who are considered experts and have guided initiatives within these areas in the past.
Topic | PoC |
---|---|
Web Compass, Interop, and Baseline | pfaffe@chromium.org |
UI Capabilities | changhaohan@chromium.org |
Performance | paulirish@chromium.org |
JavaScript | szuend@chromium.org |
WebAssembly | pfaffe@chromium.org |
Security | dsv@chromium.org |
Network | dsv@chromium.org |
Extensions | pfaffe@chromium.org |
A feature is debuggable in DevTools if developers can use DevTools to more easily identify and fix a bug related to this feature. In some cases, debuggability is important for a feature's adoption, especially when a feature is complex and popular. There are three levels of debuggability, as follows.
DevTools doesn't offer any special support for the Web Platform Feature, but using the feature doesn't break DevTools.
DevTools helps developers understand the use of a feature.
- Basic debuggability for CSS features: The feature properties are displayed and, if applicable, are editable. If the feature includes cross references, references are linkified where appropriate.
- Basic debuggability for Web APIs: Objects can be inspected in the sources panel (scope view, editor popover, console) and function calls can be made from the console.
DevTools offers dedicated tooling for Web Platform APIs. These tools provide helpful hints, educating developers on how to use these features effectively. Extended tooling support usually follows our standard feature development process.
- Extended debuggability for CSS: DevTools clearly shows the user the different usage options for a feature and offers a non-text UI to configure it where possible (e.g., color picker, flexbox picker).
- Extended debuggability for Web APIs: DevTools offers first-party debugging support for a feature, e.g. through automatic breakpoints.
Defining the scope of the feature request helps us better understand how to allocate resources, and choose the most appropriate collaboration mode. Specifically, if you need extended debuggability support, please think about the following:
- the minimal viable product needed to ensure a smooth adoption of the feature by developers
- the v1.0 of your feature
- nice-to-haves and out-of-scope features
- the responsibility to maintain the feature
To scale the tooling support to the number of developer products and APIs being launched throughout Chrome (in particular the various new Web Platform APIs being introduced year-by-year), the Chrome DevTools team has created a guiding framework on how priorities are supported and provided more options for supporting teams. Each initiative is owned by the feature team. Each engagement will have a definitive level of support defined out of the following categories:
In this self-service model, feature teams are responsible for designing and implementing tooling support, using the provided documentation. The DevTools team will not actively follow the project but will answer questions, similar to office hours. This type of support is designed to scale the tooling support by providing guidance and resources to product and engineering teams.
Example: Web Audio extension
The Chrome DevTools team will consult the feature team on the right solution, in particular on the right usage of DevTools/CDP API, and the design of runtime introspection capabilities. The UI of the solution will either be
- Chrome Extension,
- Chrome Internals page, or
- a separate tool.
There is no meaningful expectation to change the DevTools frontend.
Example: Privacy & Security panel
The feature team does the implementation of the DevTools frontend pieces and relevant backend services required for debugging. The Chrome DevTools team does the reviews and consultations required to get the CLs landed and folding nicely into our tool surfaces (e.g. does it meet the Chromium DevTools UI feature checklist?).
Example: Early Hints DevTools support
The Chrome DevTools team does the implementation of the DevTools frontend pieces. The feature team does the implementation of the backend services and plumbing required for debugging to be used in the frontend, most likely the CDP methods et. al.
Example: Autofill DevTools MVP
The Chrome DevTools team does the implementation and design of frontend and backend pieces.
Examples: Core Web Vital support in Lighthouse and DevTools, Modern CSS color features in DevTools
Any new feature comes with the potential of introducing new bugs (potentially even breaking somewhat unrelated workflows unintentionally).
For any of the collaboration modes listed above except Fully owned, the Chrome DevTools team expects the feature team to maintain the tooling aspects of their feature by fixing any bugs that result from the MVP / 1.0, independent of whether these are frontend or backend bugs (except in case of 50/50 split where the Chrome DevTools team will own the frontend issues), for at least a period of 3 Chrome milestones (since the successful launch).
Additionally the Chrome DevTools team relies on the feature team as the domain experts for any domain-specific bugs that need to be tackled (independent of whether it’s frontend or backend related).
Depending on your answers above and/or your current feature stage, you may need one of these documents below.
- DevTools support checklist for Blink Intents
- DevTools support checklist for JavaScript features
- DevTools support checklist for WebAssembly features
- Get the Code
- Contribution Guide
- UX Style Guide
- Testing Guide
- Cookbook
- Visual logging in DevTools
- Style Guides
- Architecture of DevTools
- Chrome DevTools Protocol (CDP)
- Resource management in DevTools
If you haven't worked with the Chrome DevTools team before, or if you're unsure where your feature fits, please follow the steps outlined below.
- Ask yourself who will be using your features and what kind of tooling support they might need to ensure a smooth adoption of your feature. Try to think in terms of tasks and challenges developers may face, not UI elements.
- Write a short email to devtools-dev@ with your best shot at answering those questions. It doesn't have to be perfect, and it is not a questionnaire you need to fill to satisfy some formal process. We are mostly interested in a positive end user experience and are willing to work with you together to achieve that.
- We will get back to you with some initial thoughts and might ask to formalize your ideas in a design document.
- Most likely we will ask you to book an office hours with our UXD to discuss your feature’s UX, so that developers have a consistent experience on DevTools. Complex features where developers have to be introduced to significant new capabilities may take multiple iterations. It’s important to get this step right.
- Depending on the details, we will probably ask you to help us get the information exposed over the Chrome DevTools Protocol. We might also ask you to write a few straightforward CLs to implement the UI. Don't worry, we won't ask you to re-architect our code to accommodate your feature. We will also offer all the support you need along the way.