chrome-devtools-frontend 1.0.947377 → 1.0.948916
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/config/gni/all_devtools_files.gni +1 -6
- package/config/gni/devtools_grd_files.gni +5 -12
- package/config/gni/devtools_image_files.gni +1 -0
- package/front_end/.eslintrc.js +1 -0
- package/front_end/Images/src/circled_backslash_icon.svg +3 -0
- package/front_end/core/host/UserMetrics.ts +1 -1
- package/front_end/core/i18n/locales/en-US.json +32 -44
- package/front_end/core/i18n/locales/en-XL.json +32 -44
- package/front_end/core/platform/platform.ts +0 -2
- package/front_end/core/platform/string-utilities.ts +14 -1
- package/front_end/core/platform/utilities.ts +0 -29
- package/front_end/core/root/Runtime.ts +4 -207
- package/front_end/core/sdk/Cookie.ts +0 -21
- package/front_end/core/sdk/RemoteObject.ts +15 -1
- package/front_end/core/sdk/sdk-legacy.ts +0 -3
- package/front_end/entrypoints/devtools_app/{devtools_app-meta-files.ts → devtools_app.ts} +9 -3
- package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshot.ts +2 -1
- package/front_end/entrypoints/js_app/{JsMain.ts → js_app.ts} +5 -1
- package/front_end/entrypoints/main/MainImpl.ts +0 -1
- package/front_end/entrypoints/ndb_app/{ndb_app.js → ndb_app.ts} +0 -2
- package/front_end/entrypoints/node_app/node_app.ts +1 -3
- package/front_end/entrypoints/shell/{shell.js → shell.ts} +0 -2
- package/front_end/entrypoints/visibility.gni +3 -1
- package/front_end/entrypoints/worker_app/worker_app.ts +1 -4
- package/front_end/generated/InspectorBackendCommands.js +8 -1
- package/front_end/generated/protocol-mapping.d.ts +4 -0
- package/front_end/generated/protocol-proxy-api.d.ts +6 -0
- package/front_end/generated/protocol.d.ts +9 -0
- package/front_end/legacy/legacy-defs.d.ts +0 -4
- package/front_end/legacy_test_runner/test_runner/TestRunner.js +35 -59
- package/front_end/models/issues_manager/AttributionReportingIssue.ts +27 -2
- package/front_end/models/issues_manager/CorsIssue.ts +15 -15
- package/front_end/models/issues_manager/descriptions/{corsInsecurePrivateNetworkPreflight.md → corsPreflightAllowPrivateNetworkError.md} +1 -1
- package/front_end/panels/accessibility/AccessibilitySidebarView.ts +3 -1
- package/front_end/panels/application/BackForwardCacheStrings.ts +1 -5
- package/front_end/panels/application/BackForwardCacheView.ts +150 -58
- package/front_end/panels/application/ResourcesPanel.ts +0 -42
- package/front_end/panels/application/application-legacy.ts +0 -3
- package/front_end/panels/application/application-meta.ts +0 -13
- package/front_end/panels/application/backForwardCacheView.css +44 -6
- package/front_end/panels/application/components/FrameDetailsView.ts +3 -3
- package/front_end/panels/application/components/OriginTrialTreeView.ts +3 -3
- package/front_end/panels/application/components/StackTrace.ts +1 -1
- package/front_end/panels/console/ConsolePrompt.ts +0 -4
- package/front_end/panels/coverage/CoverageView.ts +1 -1
- package/front_end/panels/css_overview/components/cssOverviewStartView.css +1 -0
- package/front_end/panels/css_overview/cssOverviewCompletedView.css +1 -1
- package/front_end/panels/developer_resources/DeveloperResourcesView.ts +2 -1
- package/front_end/panels/elements/AccessibilityTreeUtils.ts +1 -7
- package/front_end/panels/elements/ElementsPanel.ts +9 -1
- package/front_end/panels/elements/ElementsTreeElement.ts +1 -1
- package/front_end/panels/elements/PropertiesWidget.ts +109 -4
- package/front_end/panels/elements/components/ElementsBreadcrumbs.ts +1 -1
- package/front_end/panels/elements/propertiesWidget.css +34 -0
- package/front_end/panels/emulation/DeviceModeToolbar.ts +5 -1
- package/front_end/panels/issues/CorsIssueDetailsView.ts +20 -8
- package/front_end/panels/network/NetworkWaterfallColumn.ts +2 -0
- package/front_end/panels/profiler/CPUProfileFlameChart.ts +3 -1
- package/front_end/panels/profiler/ProfileDataGrid.ts +2 -1
- package/front_end/panels/settings/components/SyncSection.ts +2 -2
- package/front_end/panels/settings/emulation/components/UserAgentClientHintsForm.ts +46 -46
- package/front_end/panels/timeline/TimelineTreeView.ts +2 -1
- package/front_end/ui/components/diff_view/DiffView.ts +4 -4
- package/front_end/ui/components/helpers/component-server-setup.ts +1 -12
- package/front_end/ui/components/helpers/helpers.ts +0 -2
- package/front_end/ui/components/icon_button/IconButton.ts +1 -1
- package/front_end/ui/components/issue_counter/IssueCounter.ts +2 -2
- package/front_end/ui/components/linear_memory_inspector/LinearMemoryViewer.ts +3 -3
- package/front_end/ui/components/markdown_view/MarkdownView.ts +4 -4
- package/front_end/ui/components/panel_feedback/PreviewToggle.ts +98 -0
- package/front_end/ui/components/panel_feedback/panel_feedback.ts +1 -0
- package/front_end/ui/components/panel_feedback/previewToggle.css +24 -0
- package/front_end/ui/components/report_view/ReportView.ts +22 -0
- package/front_end/ui/components/report_view/reportSection.css +20 -0
- package/front_end/ui/components/request_link_icon/RequestLinkIcon.ts +1 -1
- package/front_end/ui/components/settings/SettingCheckbox.ts +2 -2
- package/front_end/ui/components/text_editor/config.ts +4 -3
- package/front_end/ui/components/text_editor/javascript.ts +8 -4
- package/front_end/ui/components/text_prompt/TextPrompt.ts +2 -2
- package/front_end/ui/legacy/GlassPane.ts +1 -1
- package/front_end/ui/legacy/SearchableView.ts +2 -1
- package/front_end/ui/legacy/Treeoutline.ts +1 -1
- package/front_end/ui/legacy/Widget.ts +1 -1
- package/front_end/ui/legacy/XWidget.ts +0 -5
- package/front_end/ui/legacy/components/inline_editor/CSSVarSwatch.ts +2 -2
- package/front_end/ui/legacy/components/inline_editor/ColorSwatch.ts +1 -1
- package/front_end/ui/legacy/utils/append-style.ts +2 -13
- package/front_end/ui/legacy/utils/create-shadow-root-with-core-styles.ts +7 -5
- package/package.json +2 -4
- package/scripts/build/build_inspector_overlay.py +15 -1
- package/scripts/build/rjsmin.py +84 -115
- package/scripts/eslint_rules/lib/ban_a_tags_in_lit_html.js +2 -11
- package/scripts/eslint_rules/lib/ban_literal_devtools_component_tag_names.js +2 -11
- package/scripts/eslint_rules/lib/ban_self_closing_custom_element_tagnames.js +2 -11
- package/scripts/eslint_rules/lib/ban_style_tags_in_lit_html.js +2 -11
- package/scripts/eslint_rules/lib/lit_html_data_as_type.js +2 -11
- package/scripts/eslint_rules/lib/lit_html_no_attribute_quotes.js +89 -0
- package/scripts/eslint_rules/lib/lit_no_style_interpolation.js +2 -11
- package/scripts/eslint_rules/lib/no_only_eslint_tests.js +53 -0
- package/scripts/eslint_rules/lib/static_tag_must_be_static_property.js +2 -11
- package/scripts/eslint_rules/lib/utils.js +29 -0
- package/scripts/eslint_rules/tests/.eslintrc.js +18 -0
- package/scripts/eslint_rules/tests/lit_html_no_attribute_quotes_test.js +45 -0
- package/scripts/eslint_rules/tests/no_only_eslint_tests_test.js +94 -0
- package/scripts/eslint_rules/tests/utils_test.js +40 -0
- package/front_end/entrypoints/devtools_app/devtools_app.js +0 -11
- package/front_end/entrypoints/devtools_app/devtools_app.json +0 -4
- package/front_end/entrypoints/js_app/js_app.js +0 -12
- package/front_end/entrypoints/js_app/js_app.json +0 -3
- package/front_end/entrypoints/ndb_app/ndb_app.json +0 -4
- package/front_end/entrypoints/startup/RuntimeInstantiator.ts +0 -95
- package/front_end/entrypoints/startup/startup.ts +0 -9
- package/front_end/panels/help/HelpImpl.ts +0 -141
- package/front_end/panels/help/ReleaseNoteText.ts +0 -1496
- package/front_end/panels/help/ReleaseNoteView.ts +0 -107
- package/front_end/panels/help/help-meta.ts +0 -145
- package/front_end/panels/help/help.ts +0 -13
- package/front_end/panels/help/releaseNote.css +0 -115
- package/front_end/ui/components/helpers/get-stylesheet.ts +0 -45
- package/scripts/build/build_release_applications.py +0 -216
- package/scripts/build/modular_build.py +0 -184
- package/scripts/check_gn.js +0 -119
- package/scripts/json_validator/module.schema.json +0 -19
- package/scripts/json_validator/validate_module_json.js +0 -44
|
@@ -1,1496 +0,0 @@
|
|
|
1
|
-
// Copyright 2017 The Chromium Authors. All rights reserved.
|
|
2
|
-
// Use of this source code is governed by a BSD-style license that can be
|
|
3
|
-
// found in the LICENSE file.
|
|
4
|
-
|
|
5
|
-
// NOTE: need to be careful about adding release notes early otherwise it'll
|
|
6
|
-
// be shown in Canary (e.g. make sure the release notes are accurate).
|
|
7
|
-
// https://github.com/ChromeDevTools/devtools-frontend/wiki/Release-Notes
|
|
8
|
-
|
|
9
|
-
import * as Host from '../../core/host/host.js';
|
|
10
|
-
import * as i18n from '../../core/i18n/i18n.js';
|
|
11
|
-
|
|
12
|
-
import type {ReleaseNote} from './HelpImpl.js';
|
|
13
|
-
|
|
14
|
-
const continueToHereShortcut = Host.Platform.isMac() ? 'Command' : 'Control';
|
|
15
|
-
const networkSearchShortcut = Host.Platform.isMac() ? 'Command+F' : 'Control+F';
|
|
16
|
-
const commandMenuShortcut = Host.Platform.isMac() ? 'Command+Shift+P' : 'Control+Shift+P';
|
|
17
|
-
const releaseNoteLangs = new Set(['es', 'ja', 'ko', 'pt', 'ru', 'zh']);
|
|
18
|
-
|
|
19
|
-
function getReleaseNoteLang(): string {
|
|
20
|
-
const currentDevToolsUILanguage = i18n.DevToolsLocale.DevToolsLocale.instance().locale;
|
|
21
|
-
// @ts-ignore TODO(crbug.com/1163928) Wait for Intl support.
|
|
22
|
-
const currentDevToolsLocale = new Intl.Locale(currentDevToolsUILanguage);
|
|
23
|
-
|
|
24
|
-
return currentDevToolsLocale.language && releaseNoteLangs.has(currentDevToolsLocale.language) ?
|
|
25
|
-
currentDevToolsLocale.language :
|
|
26
|
-
'';
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
function getLocalizedReleaseNoteURL(url: string): string {
|
|
30
|
-
const releaseNoteURL = new URL(url);
|
|
31
|
-
const releaseNoteLang = getReleaseNoteLang();
|
|
32
|
-
if (releaseNoteLang) {
|
|
33
|
-
releaseNoteURL.pathname = `/${releaseNoteLang}${releaseNoteURL.pathname}`;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
return releaseNoteURL.toString();
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
export const releaseNoteText: ReleaseNote[] = [
|
|
40
|
-
{
|
|
41
|
-
version: 39,
|
|
42
|
-
header: 'Highlights from the Chrome 97 update',
|
|
43
|
-
highlights: [
|
|
44
|
-
{
|
|
45
|
-
title: 'New preview feature: Recorder panel',
|
|
46
|
-
subtitle: 'Record, replay and measure user flows with options to export to Puppeteer script and more.',
|
|
47
|
-
link: getLocalizedReleaseNoteURL('https://developer.chrome.com/blog/new-in-devtools-97/#recorder'),
|
|
48
|
-
},
|
|
49
|
-
{
|
|
50
|
-
title: 'Enhanced "Edit as HTML" with code completion',
|
|
51
|
-
subtitle: 'Edit as HTML in the Elements panel now supports code completion, syntax highlights and more.',
|
|
52
|
-
link: getLocalizedReleaseNoteURL('https://developer.chrome.com/blog/new-in-devtools-97/#code-completion'),
|
|
53
|
-
},
|
|
54
|
-
{
|
|
55
|
-
title: 'Refresh device list in Device Mode',
|
|
56
|
-
subtitle: 'New devices are added in the device list.',
|
|
57
|
-
link: getLocalizedReleaseNoteURL('https://developer.chrome.com/blog/new-in-devtools-97/#device'),
|
|
58
|
-
},
|
|
59
|
-
{
|
|
60
|
-
title: 'Improved code debugging experience',
|
|
61
|
-
subtitle:
|
|
62
|
-
'Include column number in the Console stack trace, improved breakpoints display in the Sources panel and more.',
|
|
63
|
-
link: getLocalizedReleaseNoteURL('https://developer.chrome.com/blog/new-in-devtools-97/#debugging'),
|
|
64
|
-
},
|
|
65
|
-
],
|
|
66
|
-
link: getLocalizedReleaseNoteURL('https://developer.chrome.com/blog/new-in-devtools-97'),
|
|
67
|
-
},
|
|
68
|
-
{
|
|
69
|
-
version: 38,
|
|
70
|
-
header: 'Highlights from the Chrome 96 update',
|
|
71
|
-
highlights: [
|
|
72
|
-
{
|
|
73
|
-
title: 'New preview feature: CSS Overview panel',
|
|
74
|
-
subtitle: 'Use the CSS overview panel to identify CSS improvements on your page.',
|
|
75
|
-
link: getLocalizedReleaseNoteURL('https://developer.chrome.com/blog/new-in-devtools-96/#css-overview'),
|
|
76
|
-
},
|
|
77
|
-
{
|
|
78
|
-
title: 'Enable emulating prefers-contrast media and auto dark mode',
|
|
79
|
-
subtitle:
|
|
80
|
-
'Emulate the user preference on using a different contrast mode for the page and Chrome’s auto dark mode.',
|
|
81
|
-
link: getLocalizedReleaseNoteURL('https://developer.chrome.com/blog/new-in-devtools-96/#emulation'),
|
|
82
|
-
},
|
|
83
|
-
{
|
|
84
|
-
title: 'New Payload tab in the Network panel',
|
|
85
|
-
subtitle: 'A new Payload tab is available when you click to inspect a network request.',
|
|
86
|
-
link: getLocalizedReleaseNoteURL('https://developer.chrome.com/blog/new-in-devtools-96/#payload'),
|
|
87
|
-
},
|
|
88
|
-
{
|
|
89
|
-
title: 'Option to hide CORS errors in the Console',
|
|
90
|
-
subtitle:
|
|
91
|
-
'Now that CORS errors are reported in the Issues tab, you can hide CORS errors in the Console to reduce clutter.',
|
|
92
|
-
link: getLocalizedReleaseNoteURL('https://developer.chrome.com/blog/new-in-devtools-96/#hide-cors-errors'),
|
|
93
|
-
},
|
|
94
|
-
],
|
|
95
|
-
link: getLocalizedReleaseNoteURL('https://developer.chrome.com/blog/new-in-devtools-96'),
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
version: 37,
|
|
99
|
-
header: 'Highlights from the Chrome 95 update',
|
|
100
|
-
highlights: [
|
|
101
|
-
{
|
|
102
|
-
title: 'New CSS length authoring tools',
|
|
103
|
-
subtitle: 'Drag to change the unit value and select unit type from the dropdown in the Styles pane.',
|
|
104
|
-
link: getLocalizedReleaseNoteURL('https://developer.chrome.com/blog/new-in-devtools-95/#length'),
|
|
105
|
-
},
|
|
106
|
-
{
|
|
107
|
-
title: 'Hide issues in the Issues tab',
|
|
108
|
-
subtitle: 'Hide irrelevant issues so you can focus only on those issues that matter to you.',
|
|
109
|
-
link: getLocalizedReleaseNoteURL('https://developer.chrome.com/blog/new-in-devtools-95/#hide-issues'),
|
|
110
|
-
},
|
|
111
|
-
{
|
|
112
|
-
title: 'Improved the display of properties in the Properties pane and Sources panel',
|
|
113
|
-
subtitle: 'Always bold and sort own properties first, flatten the display of properties, and more.',
|
|
114
|
-
link: getLocalizedReleaseNoteURL('https://developer.chrome.com/blog/new-in-devtools-95/#properties'),
|
|
115
|
-
},
|
|
116
|
-
{
|
|
117
|
-
title: 'Lighthouse 8.4',
|
|
118
|
-
subtitle: 'A new audit to detect when the LCP element is lazy-loaded.',
|
|
119
|
-
link: getLocalizedReleaseNoteURL('https://developer.chrome.com/blog/new-in-devtools-95/#lighthouse'),
|
|
120
|
-
},
|
|
121
|
-
],
|
|
122
|
-
link: getLocalizedReleaseNoteURL('https://developer.chrome.com/blog/new-in-devtools-95'),
|
|
123
|
-
},
|
|
124
|
-
{
|
|
125
|
-
version: 36,
|
|
126
|
-
header: 'Highlights from the Chrome 94 update',
|
|
127
|
-
highlights: [
|
|
128
|
-
{
|
|
129
|
-
title: 'Change the language of your DevTools',
|
|
130
|
-
subtitle: 'Chrome DevTools now supports multiple languages, allowing you to work in your preferred language.',
|
|
131
|
-
link: getLocalizedReleaseNoteURL('https://developer.chrome.com/blog/new-in-devtools-94/#localized'),
|
|
132
|
-
},
|
|
133
|
-
{
|
|
134
|
-
title: 'New Nest Hub devices in the Device list',
|
|
135
|
-
subtitle: 'You can now simulate the dimensions of Nest Hub devices in DevTools.',
|
|
136
|
-
link: getLocalizedReleaseNoteURL('https://developer.chrome.com/blog/new-in-devtools-94/#nest-hub'),
|
|
137
|
-
},
|
|
138
|
-
{
|
|
139
|
-
title: 'Invert all network filters',
|
|
140
|
-
subtitle: 'Use the new `invert` checkbox to invert all filters in the Network panel.',
|
|
141
|
-
link: getLocalizedReleaseNoteURL('https://developer.chrome.com/blog/new-in-devtools-94/#invert-network-filter'),
|
|
142
|
-
},
|
|
143
|
-
{
|
|
144
|
-
title: 'Upcoming deprecation of the Console sidebar',
|
|
145
|
-
subtitle: 'The Console sidebar will be removed in favor of moving the filter UI to the toolbar.',
|
|
146
|
-
link: getLocalizedReleaseNoteURL('https://developer.chrome.com/blog/new-in-devtools-94/#deprecated'),
|
|
147
|
-
},
|
|
148
|
-
],
|
|
149
|
-
link: getLocalizedReleaseNoteURL('https://developer.chrome.com/blog/new-in-devtools-94'),
|
|
150
|
-
},
|
|
151
|
-
{
|
|
152
|
-
version: 35,
|
|
153
|
-
header: 'Highlights from the Chrome 93 update',
|
|
154
|
-
highlights: [
|
|
155
|
-
{
|
|
156
|
-
title: 'Lighthouse 8.1',
|
|
157
|
-
subtitle: 'New `csp-xss` audit, performance score weighting changes, and more.',
|
|
158
|
-
link: 'https://developer.chrome.com/blog/new-in-devtools-93/#lighthouse',
|
|
159
|
-
},
|
|
160
|
-
{
|
|
161
|
-
title: 'Editable web container queries in the Styles pane',
|
|
162
|
-
subtitle: 'View and edit web container queries in the Styles pane.',
|
|
163
|
-
link: 'https://developer.chrome.com/blog/new-in-devtools-93/#container-queries',
|
|
164
|
-
},
|
|
165
|
-
{
|
|
166
|
-
title: 'Web bundle preview in the Network panel',
|
|
167
|
-
subtitle: 'Click on a web bundle network request to preview the content.',
|
|
168
|
-
link: 'https://developer.chrome.com/blog/new-in-devtools-93/#web-bundle',
|
|
169
|
-
},
|
|
170
|
-
{
|
|
171
|
-
title: 'Attribution Reporting API debugging',
|
|
172
|
-
subtitle: 'Attribution Reporting API errors are now reported in the Issues tab.',
|
|
173
|
-
link: 'https://developer.chrome.com/blog/new-in-devtools-93/#attribution-reporting',
|
|
174
|
-
},
|
|
175
|
-
{
|
|
176
|
-
title: 'Better string handling in the Console',
|
|
177
|
-
subtitle:
|
|
178
|
-
'Improved readability of displayed strings and new shortcuts to copy string as JSON and JavaScript literal.',
|
|
179
|
-
link: 'https://developer.chrome.com/blog/new-in-devtools-93/#string',
|
|
180
|
-
},
|
|
181
|
-
{
|
|
182
|
-
title: 'Improved CORS debugging',
|
|
183
|
-
subtitle: 'CORS-related TypeErrors in the Console are now linked to the network panel and Issues tab.',
|
|
184
|
-
link: 'https://developer.chrome.com/blog/new-in-devtools-93/#cors',
|
|
185
|
-
},
|
|
186
|
-
],
|
|
187
|
-
link: 'https://developer.chrome.com/blog/new-in-devtools-93/',
|
|
188
|
-
},
|
|
189
|
-
{
|
|
190
|
-
version: 34,
|
|
191
|
-
header: 'Highlights from the Chrome 92 update',
|
|
192
|
-
highlights: [
|
|
193
|
-
{
|
|
194
|
-
title: 'CSS Grid editor',
|
|
195
|
-
subtitle: 'Preview and author CSS Grid with the CSS Grid editor.',
|
|
196
|
-
link: 'https://developer.chrome.com/blog/new-in-devtools-92#grid-editor',
|
|
197
|
-
},
|
|
198
|
-
{
|
|
199
|
-
title: 'Source order viewer',
|
|
200
|
-
subtitle: 'Display the order of source elements on screen for better accessibility inspection.',
|
|
201
|
-
link: 'https://developer.chrome.com/blog/new-in-devtools-92#source-order',
|
|
202
|
-
},
|
|
203
|
-
{
|
|
204
|
-
title: 'Lighthouse 7.5',
|
|
205
|
-
subtitle: 'Easily view all the JavaScript bundles on your page with the new Lighthouse Treemap, and more.',
|
|
206
|
-
link: 'https://developer.chrome.com/blog/new-in-devtools-92#lighthouse',
|
|
207
|
-
},
|
|
208
|
-
{
|
|
209
|
-
title: 'Improved CORS debugging',
|
|
210
|
-
subtitle: 'CORS errors are now reported in the Issues tab.',
|
|
211
|
-
link: 'https://developer.chrome.com/blog/new-in-devtools-92#cors',
|
|
212
|
-
},
|
|
213
|
-
{
|
|
214
|
-
title: 'Network panel updates',
|
|
215
|
-
subtitle: 'Add Wasm and web bundle to the resource types and rename XHR label to Fetch/XHR.',
|
|
216
|
-
link: 'https://developer.chrome.com/blog/new-in-devtools-92#network',
|
|
217
|
-
},
|
|
218
|
-
],
|
|
219
|
-
link: 'https://developer.chrome.com/blog/new-in-devtools-92/',
|
|
220
|
-
},
|
|
221
|
-
{
|
|
222
|
-
version: 33,
|
|
223
|
-
header: 'Highlights from the Chrome 91 update',
|
|
224
|
-
highlights: [
|
|
225
|
-
{
|
|
226
|
-
title: 'Web Vitals information pop up',
|
|
227
|
-
subtitle: 'Hover on a Web Vitals marker in the Performance panel to understand what’s the indicator about.',
|
|
228
|
-
link: 'https://developer.chrome.com/blog/new-in-devtools-91#web-vitals',
|
|
229
|
-
},
|
|
230
|
-
{
|
|
231
|
-
title: 'Visualize CSS scroll-snap',
|
|
232
|
-
subtitle: 'Toggle the "scroll-snap" badge in the Elements panel to inspect the CSS scroll-snap alignment.',
|
|
233
|
-
link: 'https://developer.chrome.com/blog/new-in-devtools-91#css-scroll-snap',
|
|
234
|
-
},
|
|
235
|
-
{
|
|
236
|
-
title: 'Network panel enhancements',
|
|
237
|
-
subtitle: 'A new network conditions button with new options to configure `Content-Encoding`s.',
|
|
238
|
-
link: 'https://developer.chrome.com/blog/new-in-devtools-91#network-panel',
|
|
239
|
-
},
|
|
240
|
-
{
|
|
241
|
-
title: 'New badge settings pane',
|
|
242
|
-
subtitle: 'Selectively enable or disable badges via the Elements panel context menu.',
|
|
243
|
-
link: 'https://developer.chrome.com/blog/new-in-devtools-91#badge-settings',
|
|
244
|
-
},
|
|
245
|
-
{
|
|
246
|
-
title: 'New Memory inspector tab',
|
|
247
|
-
subtitle: 'Inspect the WebAssembly memory in hexadecimal and ASCII views, and more.',
|
|
248
|
-
link: 'https://developer.chrome.com/blog/new-in-devtools-91#memory-inspector',
|
|
249
|
-
},
|
|
250
|
-
{
|
|
251
|
-
title: 'Enhanced image preview with aspect ratio information',
|
|
252
|
-
subtitle: 'Image previews in the Elements panel now display intrinsic/rendered file size and aspect ratio.',
|
|
253
|
-
link: 'https://developer.chrome.com/blog/new-in-devtools-91#image-preview',
|
|
254
|
-
},
|
|
255
|
-
{
|
|
256
|
-
title: 'Categorize issue types with colors and icons',
|
|
257
|
-
subtitle: 'Categorize issues into errors, warnings, and possible improvements for better severity indication.',
|
|
258
|
-
link: 'https://developer.chrome.com/blog/new-in-devtools-91#issue-category',
|
|
259
|
-
},
|
|
260
|
-
],
|
|
261
|
-
link: 'https://developer.chrome.com/blog/new-in-devtools-91/',
|
|
262
|
-
},
|
|
263
|
-
{
|
|
264
|
-
version: 32,
|
|
265
|
-
header: 'Highlights from the Chrome 90 update',
|
|
266
|
-
highlights: [
|
|
267
|
-
{
|
|
268
|
-
title: 'New CSS Flexbox debugging tools',
|
|
269
|
-
subtitle: 'Debug and inspect CSS Flexbox with the new CSS Flexbox debugging tools.',
|
|
270
|
-
link: 'https://developers.google.com/web/updates/2021/02/devtools#flexbox',
|
|
271
|
-
},
|
|
272
|
-
{
|
|
273
|
-
title: 'New Core Web Vitals overlay',
|
|
274
|
-
subtitle: 'Visualize page performance with the new Core Web Vitals overlay.',
|
|
275
|
-
link: 'https://developers.google.com/web/updates/2021/02/devtools#cwv',
|
|
276
|
-
},
|
|
277
|
-
{
|
|
278
|
-
title: 'Report Trusted Web Activity issues',
|
|
279
|
-
subtitle: 'Debug Trusted Web Activity issues in the Issues panel.',
|
|
280
|
-
link: 'https://developers.google.com/web/updates/2021/02/devtools#twa',
|
|
281
|
-
},
|
|
282
|
-
{
|
|
283
|
-
title: 'New Trust Token pane',
|
|
284
|
-
subtitle: 'New Trust Token pane in the Application Panel.',
|
|
285
|
-
link: 'https://developers.google.com/web/updates/2021/02/devtools#trust-token-pane',
|
|
286
|
-
},
|
|
287
|
-
{
|
|
288
|
-
title: 'Emulate the CSS color-gamut media feature',
|
|
289
|
-
subtitle: 'Emulate color-gamut to test different color standards.',
|
|
290
|
-
link: 'https://developers.google.com/web/updates/2021/02/devtools#css-gamut',
|
|
291
|
-
},
|
|
292
|
-
{
|
|
293
|
-
title: 'Format strings as (valid) JavaScript string literals in the Console',
|
|
294
|
-
subtitle: 'Display string with escaped double quotes in the Console',
|
|
295
|
-
link: 'https://developers.google.com/web/updates/2021/02/devtools#double-quotes',
|
|
296
|
-
},
|
|
297
|
-
{
|
|
298
|
-
title: 'Improved PWA tooling',
|
|
299
|
-
subtitle: 'Improved PWA installability warning message, new warnings for manifest screenshots, and more. ',
|
|
300
|
-
link: 'https://developers.google.com/web/updates/2021/02/devtools#pwa',
|
|
301
|
-
},
|
|
302
|
-
],
|
|
303
|
-
link: 'https://developers.google.com/web/updates/2021/02/devtools',
|
|
304
|
-
},
|
|
305
|
-
{
|
|
306
|
-
version: 31,
|
|
307
|
-
header: 'Highlights from the Chrome 89 update',
|
|
308
|
-
highlights: [
|
|
309
|
-
|
|
310
|
-
{
|
|
311
|
-
title: 'Debugging support for Trusted Type violations',
|
|
312
|
-
subtitle: 'Breakpoint on Trusted Type violations and link to more information in the Issues tab.',
|
|
313
|
-
link: 'https://developers.google.com/web/updates/2021/01/devtools#trusted-types',
|
|
314
|
-
},
|
|
315
|
-
{
|
|
316
|
-
title: 'Capture node screenshot beyond viewport',
|
|
317
|
-
subtitle: 'Capture node screenshot for a full node including content below the fold.',
|
|
318
|
-
link: 'https://developers.google.com/web/updates/2021/01/devtools#node-screenshot',
|
|
319
|
-
},
|
|
320
|
-
{
|
|
321
|
-
title: 'New Trust Token tab for network requests',
|
|
322
|
-
subtitle: 'Display Trusted Token parameters and results of network requests.',
|
|
323
|
-
link: 'https://developers.google.com/web/updates/2021/01/devtools#trust-token',
|
|
324
|
-
},
|
|
325
|
-
{
|
|
326
|
-
title: 'Lighthouse 7',
|
|
327
|
-
subtitle: 'New audits for PWA, accessibility, third-party embeds, and more.',
|
|
328
|
-
link: 'https://developers.google.com/web/updates/2021/01/devtools#lighthouse',
|
|
329
|
-
},
|
|
330
|
-
{
|
|
331
|
-
title: 'Elements panel updates',
|
|
332
|
-
subtitle:
|
|
333
|
-
'Support forcing CSS :target state, color pickers for custom CSS properties, a new context menu to duplicate elements, and more.',
|
|
334
|
-
link: 'https://developers.google.com/web/updates/2021/01/devtools#elements-panel',
|
|
335
|
-
},
|
|
336
|
-
{
|
|
337
|
-
title: 'Cookies updates',
|
|
338
|
-
subtitle: 'Option to show URL-decoded cookies, only clear visible cookies, and more.',
|
|
339
|
-
link: 'https://developers.google.com/web/updates/2021/01/devtools#cookies',
|
|
340
|
-
},
|
|
341
|
-
{
|
|
342
|
-
title: 'User-Agent Client Hints for custom devices',
|
|
343
|
-
subtitle: 'Edit User-Agent Client Hints for custom devices.',
|
|
344
|
-
link: 'https://developers.google.com/web/updates/2021/01/devtools#ua-ch',
|
|
345
|
-
},
|
|
346
|
-
],
|
|
347
|
-
link: 'https://developers.google.com/web/updates/2021/01/devtools',
|
|
348
|
-
},
|
|
349
|
-
{
|
|
350
|
-
version: 30,
|
|
351
|
-
header: 'Highlights from the Chrome 88 update',
|
|
352
|
-
highlights: [
|
|
353
|
-
{
|
|
354
|
-
title: 'New CSS angle visualization tools',
|
|
355
|
-
subtitle: 'Better visualize and edit CSS angle in the Styles pane.',
|
|
356
|
-
link: 'https://developers.google.com/web/updates/2020/11/devtools#css-angle',
|
|
357
|
-
},
|
|
358
|
-
{
|
|
359
|
-
title: 'Emulate unsupported image types',
|
|
360
|
-
subtitle: '2 new emulations to disable AVIF and WebP image formats in the Rendering tab.',
|
|
361
|
-
link: 'https://developers.google.com/web/updates/2020/11/devtools#emulate-image',
|
|
362
|
-
},
|
|
363
|
-
{
|
|
364
|
-
title: 'Simulate storage quota size',
|
|
365
|
-
subtitle: 'Override storage quota size in the Storage pane.',
|
|
366
|
-
link: 'https://developers.google.com/web/updates/2020/11/devtools#simulate-storage',
|
|
367
|
-
},
|
|
368
|
-
{
|
|
369
|
-
title: 'New Web Vitals lane',
|
|
370
|
-
subtitle: 'New Web Vitals lane in the Performance panel recordings.',
|
|
371
|
-
link: 'https://developers.google.com/web/updates/2020/11/devtools#web-vitals',
|
|
372
|
-
},
|
|
373
|
-
{
|
|
374
|
-
title: 'Report CORS errors in the Network panel',
|
|
375
|
-
subtitle: 'Show CORS errors label and error code for failed CORS requests.',
|
|
376
|
-
link: 'https://developers.google.com/web/updates/2020/11/devtools#cors',
|
|
377
|
-
},
|
|
378
|
-
{
|
|
379
|
-
title: 'Frame details view updates',
|
|
380
|
-
subtitle: 'New cross-origin isolation status, API availability section, and more.',
|
|
381
|
-
link: 'https://developers.google.com/web/updates/2020/11/devtools#frame-details',
|
|
382
|
-
},
|
|
383
|
-
],
|
|
384
|
-
link: 'https://developers.google.com/web/updates/2020/11/devtools',
|
|
385
|
-
},
|
|
386
|
-
{
|
|
387
|
-
version: 29,
|
|
388
|
-
header: 'Highlights from the Chrome 87 update',
|
|
389
|
-
highlights: [
|
|
390
|
-
{
|
|
391
|
-
title: 'New CSS Grid debugging tools',
|
|
392
|
-
subtitle: 'Debug and inspect CSS Grid with the new CSS Grid debugging tools.',
|
|
393
|
-
link: 'https://developers.google.com/web/updates/2020/10/devtools#css-grid',
|
|
394
|
-
},
|
|
395
|
-
{
|
|
396
|
-
title: 'New WebAuthn tab',
|
|
397
|
-
subtitle: 'Emulate authenticators and debug the Web Authentication API with the new WebAuthn tab.',
|
|
398
|
-
link: 'https://developers.google.com/web/updates/2020/10/devtools#webauthn',
|
|
399
|
-
},
|
|
400
|
-
{
|
|
401
|
-
title: 'Move tools between top and bottom panel',
|
|
402
|
-
subtitle: 'Move tools in DevTools between the top and bottom panel.',
|
|
403
|
-
link: 'https://developers.google.com/web/updates/2020/10/devtools#moveable-tools',
|
|
404
|
-
},
|
|
405
|
-
{
|
|
406
|
-
title: 'Elements panel updates',
|
|
407
|
-
subtitle: 'View the Computed sidebar pane in the Styles pane, and more.',
|
|
408
|
-
link: 'https://developers.google.com/web/updates/2020/10/devtools#elements-panel',
|
|
409
|
-
},
|
|
410
|
-
{
|
|
411
|
-
title: 'Lighthouse 6.4',
|
|
412
|
-
subtitle: 'New audits to validate preload fonts, valid sourcemaps, and more.',
|
|
413
|
-
link: 'https://developers.google.com/web/updates/2020/10/devtools#lighthouse',
|
|
414
|
-
},
|
|
415
|
-
{
|
|
416
|
-
title: '`performance.mark()` events in the Timings section',
|
|
417
|
-
subtitle: 'Performance recording now marks `performance.mark()` events.',
|
|
418
|
-
link: 'https://developers.google.com/web/updates/2020/10/devtools#perf-mark',
|
|
419
|
-
},
|
|
420
|
-
{
|
|
421
|
-
title: 'New filters in the Network panel',
|
|
422
|
-
subtitle: 'New `resource-type` and `url` keywords in the **Network panel** to filter network requests.',
|
|
423
|
-
link: 'https://developers.google.com/web/updates/2020/10/devtools#network-filters',
|
|
424
|
-
},
|
|
425
|
-
],
|
|
426
|
-
link: 'https://developers.google.com/web/updates/2020/10/devtools',
|
|
427
|
-
},
|
|
428
|
-
{
|
|
429
|
-
version: 28,
|
|
430
|
-
header: 'Highlights from the Chrome 86 update',
|
|
431
|
-
highlights: [
|
|
432
|
-
{
|
|
433
|
-
title: 'New Media panel',
|
|
434
|
-
subtitle: 'View and download media information on a browser tab.',
|
|
435
|
-
link: 'https://developers.google.com/web/updates/2020/08/devtools#media-panel',
|
|
436
|
-
},
|
|
437
|
-
{
|
|
438
|
-
title: 'Issues tab updates',
|
|
439
|
-
subtitle:
|
|
440
|
-
'The Issues warning bar is replaced with a regular message. Issues tab has a new checkbox to filter third-party cookie issues.',
|
|
441
|
-
link: 'https://developers.google.com/web/updates/2020/08/devtools#issues-tab',
|
|
442
|
-
},
|
|
443
|
-
{
|
|
444
|
-
title: 'Emulate missing local fonts',
|
|
445
|
-
subtitle: 'Emulate missing `local()` sources in @font-face rules.',
|
|
446
|
-
link: 'https://developers.google.com/web/updates/2020/08/devtools#emulate-local-fonts',
|
|
447
|
-
},
|
|
448
|
-
{
|
|
449
|
-
title: 'Emulate inactive users',
|
|
450
|
-
subtitle: 'Emulate idle state changes for both the user state and the screen state.',
|
|
451
|
-
link: 'https://developers.google.com/web/updates/2020/08/devtools#emulate-inactive-users',
|
|
452
|
-
},
|
|
453
|
-
{
|
|
454
|
-
title: 'Emulate prefers-reduced-data',
|
|
455
|
-
subtitle: 'Emulate the user preference on using less data for the page to be rendered.',
|
|
456
|
-
link: 'https://developers.google.com/web/updates/2020/08/devtools#emulate-prefers-reduced-data',
|
|
457
|
-
},
|
|
458
|
-
{
|
|
459
|
-
title: 'Support for new JavaScript features',
|
|
460
|
-
subtitle: 'Syntax support for logical assignment operators and numeric separators.',
|
|
461
|
-
link: 'https://developers.google.com/web/updates/2020/08/devtools#javascript',
|
|
462
|
-
},
|
|
463
|
-
{
|
|
464
|
-
title: 'Lighthouse 6.2',
|
|
465
|
-
subtitle:
|
|
466
|
-
'Enhance the unused-javascript audit if a page has publicly-accessible JavaScript source maps, and more.',
|
|
467
|
-
link: 'https://developers.google.com/web/updates/2020/08/devtools#lighthouse',
|
|
468
|
-
},
|
|
469
|
-
{
|
|
470
|
-
title: 'Deprecation of service workers “other origins” listing',
|
|
471
|
-
subtitle: 'View “other origins” listing in chrome://serviceworker-internals/?devtools instead.',
|
|
472
|
-
link: 'https://developers.google.com/web/updates/2020/08/devtools#deprecate-sw-other-origins',
|
|
473
|
-
},
|
|
474
|
-
{
|
|
475
|
-
title: 'New frame detailed view',
|
|
476
|
-
subtitle: 'A new detailed view for each frame and window with security information.',
|
|
477
|
-
link: 'https://developers.google.com/web/updates/2020/08/devtools#frame-detailed-view',
|
|
478
|
-
},
|
|
479
|
-
{
|
|
480
|
-
title: 'Network and Elements panel updates',
|
|
481
|
-
subtitle:
|
|
482
|
-
'Capture node screenshots shortcut, accessible color suggestion, human-readable `X-Client-Data`, and more',
|
|
483
|
-
link: 'https://developers.google.com/web/updates/2020/08/devtools#elements-network',
|
|
484
|
-
},
|
|
485
|
-
],
|
|
486
|
-
link: 'https://developers.google.com/web/updates/2020/08/devtools',
|
|
487
|
-
},
|
|
488
|
-
{
|
|
489
|
-
version: 27,
|
|
490
|
-
header: 'Highlights from the Chrome 85 update',
|
|
491
|
-
highlights: [
|
|
492
|
-
{
|
|
493
|
-
title: 'Style editing for CSS-in-JS',
|
|
494
|
-
subtitle: 'Styles created with CSS Object Model APIs and Constructible Stylesheets are now editable.',
|
|
495
|
-
link: 'https://developers.google.com/web/updates/2020/06/devtools#css-in-js',
|
|
496
|
-
},
|
|
497
|
-
{
|
|
498
|
-
title: 'Lighthouse 6',
|
|
499
|
-
subtitle:
|
|
500
|
-
'New metrics that align with Google’s Core Web Vitals, a new weighting of the Performance score, and more.',
|
|
501
|
-
link: 'https://developers.google.com/web/updates/2020/06/devtools#lighthouse',
|
|
502
|
-
},
|
|
503
|
-
{
|
|
504
|
-
title: 'First Meaningful Paint (FMP) deprecation',
|
|
505
|
-
subtitle: 'FMP has been removed from the Performance panel and deprecated in Lighthouse 6.',
|
|
506
|
-
link: 'https://developers.google.com/web/updates/2020/06/devtools#fmp-deprecation',
|
|
507
|
-
},
|
|
508
|
-
{
|
|
509
|
-
title: 'Support for new JavaScript features',
|
|
510
|
-
subtitle:
|
|
511
|
-
'Syntax and autocompletion support for optional chaining, private fields, and the nullish coalescing operator.',
|
|
512
|
-
link: 'https://developers.google.com/web/updates/2020/06/devtools#javascript',
|
|
513
|
-
},
|
|
514
|
-
{
|
|
515
|
-
title: 'New app shortcut warnings in the Manifest pane',
|
|
516
|
-
subtitle: 'Warnings for when an app icon image is too small or not the correct shape.',
|
|
517
|
-
link: 'https://developers.google.com/web/updates/2020/06/devtools#app-shortcut-warnings',
|
|
518
|
-
},
|
|
519
|
-
{
|
|
520
|
-
title: 'Service worker respondWith events in the Timing tab',
|
|
521
|
-
subtitle: 'More visibility into how long a service worker takes to respond to a fetch event.',
|
|
522
|
-
link: 'https://developers.google.com/web/updates/2020/06/devtools#timing-tab',
|
|
523
|
-
},
|
|
524
|
-
{
|
|
525
|
-
title: 'Consistent display of the Computed pane',
|
|
526
|
-
subtitle: 'The pane now always displays as a separate pane, rather than collapsing into the Styles pane.',
|
|
527
|
-
link: 'https://developers.google.com/web/updates/2020/06/devtools#computed-pane',
|
|
528
|
-
},
|
|
529
|
-
{
|
|
530
|
-
title: 'Bytecode offsets for WebAssembly files',
|
|
531
|
-
subtitle: 'Bytecode offsets are now displayed next to Wasm disassembly rather than line numbers.',
|
|
532
|
-
link: 'https://developers.google.com/web/updates/2020/06/devtools#wasm',
|
|
533
|
-
},
|
|
534
|
-
{
|
|
535
|
-
title: 'Line-wise copy and cut in the Sources Panel',
|
|
536
|
-
subtitle: 'Cut or copy an entire line of code.',
|
|
537
|
-
link: 'https://developers.google.com/web/updates/2020/06/devtools#sources-panel',
|
|
538
|
-
},
|
|
539
|
-
{
|
|
540
|
-
title: 'Console Settings updates',
|
|
541
|
-
subtitle:
|
|
542
|
-
'The “Group similar” option now applies to duplicate messages and the “Selected context only” option is now persisted.',
|
|
543
|
-
link: 'https://developers.google.com/web/updates/2020/06/devtools#console-settings',
|
|
544
|
-
},
|
|
545
|
-
{
|
|
546
|
-
title: 'Performance panel updates',
|
|
547
|
-
subtitle:
|
|
548
|
-
'Display JavaScript compilation cache information and align navigation timing in the Performance panel.',
|
|
549
|
-
link: 'https://developers.google.com/web/updates/2020/06/devtools#perf-panel',
|
|
550
|
-
},
|
|
551
|
-
{
|
|
552
|
-
title: 'New icons for breakpoints, conditional breakpoints, and logpoints',
|
|
553
|
-
subtitle:
|
|
554
|
-
'Breakpoints get a refreshed flag design with brighter and friendlier colors. Icons are added to differentiate conditional breakpoints and logpoints.',
|
|
555
|
-
link: 'https://developers.google.com/web/updates/2020/06/devtools#breakpoints',
|
|
556
|
-
},
|
|
557
|
-
],
|
|
558
|
-
link: 'https://developers.google.com/web/updates/2020/06/devtools',
|
|
559
|
-
},
|
|
560
|
-
{
|
|
561
|
-
version: 26,
|
|
562
|
-
header: 'Highlights from the Chrome 84 update',
|
|
563
|
-
highlights: [
|
|
564
|
-
{
|
|
565
|
-
title: 'The new Issues tab',
|
|
566
|
-
subtitle:
|
|
567
|
-
'The Issues tab presents warnings from the browser in a structured, aggregated, and actionable way, links to affected resources within DevTools, and provides guidance on how to fix the issues.',
|
|
568
|
-
link: 'https://developers.google.com/web/updates/2020/05/devtools#issues',
|
|
569
|
-
},
|
|
570
|
-
{
|
|
571
|
-
title: 'New accessibility information in the Inspect Mode tooltip',
|
|
572
|
-
subtitle:
|
|
573
|
-
'The tooltip now indicates whether an element has an accessible name and role and is keyboard-focusable.',
|
|
574
|
-
link: 'https://developers.google.com/web/updates/2020/05/devtools#a11y',
|
|
575
|
-
},
|
|
576
|
-
{
|
|
577
|
-
title: 'Performance panel updates',
|
|
578
|
-
subtitle: 'New features related to Total Blocking Time (TBT) and Cumulative Layout Shift (CLS).',
|
|
579
|
-
link: 'https://developers.google.com/web/updates/2020/05/devtools#performance',
|
|
580
|
-
},
|
|
581
|
-
{
|
|
582
|
-
title: 'More accurate Promise terminology',
|
|
583
|
-
subtitle: 'When logging Promises in the Console, the status now matches the Promise spec.',
|
|
584
|
-
link: 'https://developers.google.com/web/updates/2020/05/devtools#performance',
|
|
585
|
-
},
|
|
586
|
-
{
|
|
587
|
-
title: 'Styles pane updates',
|
|
588
|
-
subtitle:
|
|
589
|
-
'Support for the revert keyword, image previews, and more usage of space-separated functional color notation by default.',
|
|
590
|
-
link: 'https://developers.google.com/web/updates/2020/05/devtools#styles',
|
|
591
|
-
},
|
|
592
|
-
{
|
|
593
|
-
title: 'Deprecation of the Properties pane',
|
|
594
|
-
subtitle: 'Use console.dir($0) instead.',
|
|
595
|
-
link: 'https://developers.google.com/web/updates/2020/05/devtools#properties',
|
|
596
|
-
},
|
|
597
|
-
{
|
|
598
|
-
title: 'App shortcuts support in the Manifest pane',
|
|
599
|
-
subtitle: 'Verify your app shortcuts are set up correctly for your PWA.',
|
|
600
|
-
link: 'https://developers.google.com/web/updates/2020/05/devtools#app-shortcuts',
|
|
601
|
-
},
|
|
602
|
-
],
|
|
603
|
-
link: 'https://developers.google.com/web/updates/2020/05/devtools',
|
|
604
|
-
},
|
|
605
|
-
{
|
|
606
|
-
version: 25,
|
|
607
|
-
header: 'Highlights from the Chrome 83 update',
|
|
608
|
-
highlights: [
|
|
609
|
-
{
|
|
610
|
-
title: 'Emulate vision deficiencies from the Rendering tab',
|
|
611
|
-
subtitle: 'Get a visual approximation of how people with vision deficiencies might experience your site.',
|
|
612
|
-
link: 'https://developers.google.com/web/updates/2020/03/devtools#vision-deficiences',
|
|
613
|
-
},
|
|
614
|
-
{
|
|
615
|
-
title: 'Emulate locales from the Sensors tab or Console',
|
|
616
|
-
subtitle:
|
|
617
|
-
'Emulating locales enables you to change JavaScript APIs such as `Intl.*`, DOM APIs such as `navigator.locale`, and the `Accept-Language` HTTP header that’s sent with network requests.',
|
|
618
|
-
link: 'https://developers.google.com/web/updates/2020/03/devtools#locales',
|
|
619
|
-
},
|
|
620
|
-
{
|
|
621
|
-
title: 'Cross-Origin Embedder Policy (COEP) debugging',
|
|
622
|
-
subtitle: 'Use the Status column and Response Headers section in the Network panel to debug COEP issues.',
|
|
623
|
-
link: 'https://developers.google.com/web/updates/2020/03/devtools#COEP',
|
|
624
|
-
},
|
|
625
|
-
{
|
|
626
|
-
title: 'New icons for breakpoints, conditional breakpoints, and logpoints',
|
|
627
|
-
subtitle:
|
|
628
|
-
'The new icons are more consistent with other GUI debugging tools and make it easier to distinguish between the 3 features at a glance.',
|
|
629
|
-
link: 'https://developers.google.com/web/updates/2020/03/devtools#debugging-icons',
|
|
630
|
-
},
|
|
631
|
-
{
|
|
632
|
-
title: 'View network requests that set a specific cookie path',
|
|
633
|
-
subtitle:
|
|
634
|
-
'Use the new `cookie-path` filter keyword to focus on the network requests that set a specific cookie path.',
|
|
635
|
-
link: 'https://developers.google.com/web/updates/2020/03/devtools#cookie-path',
|
|
636
|
-
},
|
|
637
|
-
{
|
|
638
|
-
title: 'Dock to left from the Command Menu',
|
|
639
|
-
subtitle: 'Run the “Dock to left” command to quickly move DevTools to the left of your viewport.',
|
|
640
|
-
link: 'https://developers.google.com/web/updates/2020/03/devtools#dock-to-left',
|
|
641
|
-
},
|
|
642
|
-
{
|
|
643
|
-
title: 'The Settings option in the Main Menu has moved',
|
|
644
|
-
subtitle: 'The option for opening Settings can now be found under “More Tools”.',
|
|
645
|
-
link: 'https://developers.google.com/web/updates/2020/03/devtools#settings',
|
|
646
|
-
},
|
|
647
|
-
{
|
|
648
|
-
title: 'The Audits panel is now the Lighthouse panel',
|
|
649
|
-
subtitle: 'Same features. New name.',
|
|
650
|
-
link: 'https://developers.google.com/web/updates/2020/03/devtools#lighthouse',
|
|
651
|
-
},
|
|
652
|
-
{
|
|
653
|
-
title: 'Delete all Local Overrides in a folder',
|
|
654
|
-
subtitle: 'Right-click a folder from the Overrides tab and select “Delete all overrides”.',
|
|
655
|
-
link: 'https://developers.google.com/web/updates/2020/03/devtools#overrides',
|
|
656
|
-
},
|
|
657
|
-
{
|
|
658
|
-
title: 'Updated Long Tasks UI',
|
|
659
|
-
subtitle: 'In the Performance panel Long Tasks now have a striped red background.',
|
|
660
|
-
link: 'https://developers.google.com/web/updates/2020/03/devtools#long-tasks',
|
|
661
|
-
},
|
|
662
|
-
{
|
|
663
|
-
title: 'Maskable icon support in the Manifest pane',
|
|
664
|
-
subtitle: 'Enable the “Show only the minimum safe area for maskable icons” checkbox.',
|
|
665
|
-
link: 'https://developers.google.com/web/updates/2020/03/devtools#maskable-icons',
|
|
666
|
-
},
|
|
667
|
-
],
|
|
668
|
-
link: 'https://developers.google.com/web/updates/2020/03/devtools',
|
|
669
|
-
},
|
|
670
|
-
{
|
|
671
|
-
version: 24,
|
|
672
|
-
header: 'Highlights from the Chrome 82 update',
|
|
673
|
-
highlights: [
|
|
674
|
-
{
|
|
675
|
-
title: 'Emulate vision deficiencies from the Rendering tab',
|
|
676
|
-
subtitle: 'Get a visual approximation of how people with vision deficiencies might experience your site.',
|
|
677
|
-
link: 'https://developers.google.com/web/updates/2020/03/devtools#vision-deficiences',
|
|
678
|
-
},
|
|
679
|
-
{
|
|
680
|
-
title: 'Cross-Origin Opener Policy (COOP) and Cross-Origin Embedder Policy (COEP) debugging',
|
|
681
|
-
subtitle:
|
|
682
|
-
'Use the Status column and Response Headers section in the Network panel to debug COOP and COEP issues.',
|
|
683
|
-
link: 'https://developers.google.com/web/updates/2020/03/devtools#COOP-COEP',
|
|
684
|
-
},
|
|
685
|
-
{
|
|
686
|
-
title: 'Dock to left from the Command Menu',
|
|
687
|
-
subtitle: 'Run the “Dock to left” command to quickly move DevTools to the left of your viewport.',
|
|
688
|
-
link: 'https://developers.google.com/web/updates/2020/03/devtools#dock-to-left',
|
|
689
|
-
},
|
|
690
|
-
{
|
|
691
|
-
title: 'The Audits panel is now the Lighthouse panel',
|
|
692
|
-
subtitle: 'Same features. New name.',
|
|
693
|
-
link: 'https://developers.google.com/web/updates/2020/03/devtools#lighthouse',
|
|
694
|
-
},
|
|
695
|
-
{
|
|
696
|
-
title: 'Delete all Local Overrides in a folder',
|
|
697
|
-
subtitle: 'Right-click a folder from the Overrides tab and select “Delete all overrides”.',
|
|
698
|
-
link: 'https://developers.google.com/web/updates/2020/03/devtools#overrides',
|
|
699
|
-
},
|
|
700
|
-
{
|
|
701
|
-
title: 'Updated Long Tasks UI',
|
|
702
|
-
subtitle: 'In the Performance panel Long Tasks now have a striped red background.',
|
|
703
|
-
link: 'https://developers.google.com/web/updates/2020/03/devtools#long-tasks',
|
|
704
|
-
},
|
|
705
|
-
{
|
|
706
|
-
title: 'Maskable icon support in the Manifest pane',
|
|
707
|
-
subtitle: 'Enable the “Show only the minimum safe area for maskable icons” checkbox.',
|
|
708
|
-
link: 'https://developers.google.com/web/updates/2020/03/devtools#maskable-icons',
|
|
709
|
-
},
|
|
710
|
-
],
|
|
711
|
-
link: 'https://developers.google.com/web/updates/2020/03/devtools',
|
|
712
|
-
},
|
|
713
|
-
{
|
|
714
|
-
version: 23,
|
|
715
|
-
header: 'Highlights from the Chrome 81 update',
|
|
716
|
-
highlights: [
|
|
717
|
-
{
|
|
718
|
-
title: 'Moto G4 support in Device Mode',
|
|
719
|
-
subtitle: 'Simulate Moto G4 viewport dimensions and display its hardware around the viewport.',
|
|
720
|
-
link: 'https://developers.google.com/web/updates/2020/01/devtools#motog4',
|
|
721
|
-
},
|
|
722
|
-
{
|
|
723
|
-
title: 'Cookie-related updates',
|
|
724
|
-
subtitle: 'Blocked cookies and cookie priority in the Cookies pane, editing all cookie values, and more.',
|
|
725
|
-
link: 'https://developers.google.com/web/updates/2020/01/devtools#cookies',
|
|
726
|
-
},
|
|
727
|
-
{
|
|
728
|
-
title: 'More accurate web app manifest icons',
|
|
729
|
-
subtitle: 'DevTools now shows the exact icon that Chrome uses.',
|
|
730
|
-
link: 'https://developers.google.com/web/updates/2020/01/devtools#manifesticons',
|
|
731
|
-
},
|
|
732
|
-
{
|
|
733
|
-
title: 'Hover over CSS `content` properties to see unescaped values',
|
|
734
|
-
subtitle: 'Hover over a `content` value to see the rendered version of the value in a tooltip.',
|
|
735
|
-
link: 'https://developers.google.com/web/updates/2020/01/devtools#content',
|
|
736
|
-
},
|
|
737
|
-
{
|
|
738
|
-
title: 'Source map errors in the Console',
|
|
739
|
-
subtitle: 'The Console now tells you when a source map has failed to load or parse.',
|
|
740
|
-
link: 'https://developers.google.com/web/updates/2020/01/devtools#sourcemaperrors',
|
|
741
|
-
},
|
|
742
|
-
{
|
|
743
|
-
title: 'A setting for disabling scrolling past the end of a file',
|
|
744
|
-
subtitle: 'Go to Settings and disable the “Allow scrolling past end of file” checkbox.',
|
|
745
|
-
link: 'https://developers.google.com/web/updates/2020/01/devtools#scrolling',
|
|
746
|
-
},
|
|
747
|
-
],
|
|
748
|
-
link: 'https://developers.google.com/web/updates/2020/01/devtools',
|
|
749
|
-
},
|
|
750
|
-
{
|
|
751
|
-
version: 22,
|
|
752
|
-
header: 'Highlights from the Chrome 80 update',
|
|
753
|
-
highlights: [
|
|
754
|
-
{
|
|
755
|
-
title: 'Support for let and class redeclarations',
|
|
756
|
-
subtitle:
|
|
757
|
-
'When experimenting with new code in the Console, repeating `let` or `class` declarations no longer causes errors.',
|
|
758
|
-
link: 'https://developers.google.com/web/updates/2019/12/devtools#redeclarations',
|
|
759
|
-
},
|
|
760
|
-
{
|
|
761
|
-
title: 'Improved WebAssembly debugging',
|
|
762
|
-
subtitle:
|
|
763
|
-
'The Sources panel has increased support for stepping over code, setting breakpoints, and resolving stack traces in source languages.',
|
|
764
|
-
link: 'https://developers.google.com/web/updates/2019/12/devtools#webassembly',
|
|
765
|
-
},
|
|
766
|
-
{
|
|
767
|
-
title: 'Network panel updates',
|
|
768
|
-
subtitle: 'View request initiator chains, highlight requests in the Overview, and more.',
|
|
769
|
-
link: 'https://developers.google.com/web/updates/2019/12/devtools#network',
|
|
770
|
-
},
|
|
771
|
-
{
|
|
772
|
-
title: 'Audits panel updates',
|
|
773
|
-
subtitle: 'The redesigned configuration UI has simplified throttling options.',
|
|
774
|
-
link: 'https://developers.google.com/web/updates/2019/12/devtools#audits',
|
|
775
|
-
},
|
|
776
|
-
{
|
|
777
|
-
title: 'Coverage tab updates',
|
|
778
|
-
subtitle: 'Choose per-function or per-block coverage, and more.',
|
|
779
|
-
link: 'https://developers.google.com/web/updates/2019/12/devtools#coverage',
|
|
780
|
-
},
|
|
781
|
-
],
|
|
782
|
-
link: 'https://developers.google.com/web/updates/2019/12/devtools',
|
|
783
|
-
},
|
|
784
|
-
{
|
|
785
|
-
version: 21,
|
|
786
|
-
header: 'Highlights from the Chrome 79 update',
|
|
787
|
-
highlights: [
|
|
788
|
-
{
|
|
789
|
-
title: 'Debug why a cookie was blocked',
|
|
790
|
-
subtitle: 'Click a resource in the Network panel and go to the updated Cookies tab.',
|
|
791
|
-
link: 'https://developers.google.com/web/updates/2019/10/devtools#blockedcookies',
|
|
792
|
-
},
|
|
793
|
-
{
|
|
794
|
-
title: 'View cookie values',
|
|
795
|
-
subtitle: 'Click a row in the Cookies pane in the Application panel to see the cookie’s value.',
|
|
796
|
-
link: 'https://developers.google.com/web/updates/2019/10/devtools#cookiepreviews',
|
|
797
|
-
},
|
|
798
|
-
{
|
|
799
|
-
title: 'Simulate prefers-color-scheme and prefers-reduced-motion preferences',
|
|
800
|
-
subtitle: 'Open the Rendering tab to force your site into dark or light mode or set motion preferences.',
|
|
801
|
-
link: 'https://developers.google.com/web/updates/2019/10/devtools#userpreferences',
|
|
802
|
-
},
|
|
803
|
-
{
|
|
804
|
-
title: 'Code coverage updates',
|
|
805
|
-
subtitle: 'More accessible colors, a filter text box, and a new integration with the Sources panel.',
|
|
806
|
-
link: 'https://developers.google.com/web/updates/2019/10/devtools#coverage',
|
|
807
|
-
},
|
|
808
|
-
{
|
|
809
|
-
title: 'Debug why a network resource was requested',
|
|
810
|
-
subtitle: 'Click a resource in the Network panel and go to the new Initiator tab.',
|
|
811
|
-
link: 'https://developers.google.com/web/updates/2019/10/devtools#initiator',
|
|
812
|
-
},
|
|
813
|
-
{
|
|
814
|
-
title: 'Console and Sources panels respect indentation preferences again',
|
|
815
|
-
subtitle: 'Set your preference in Settings > Preferences > Sources > Default Indentation.',
|
|
816
|
-
link: 'https://developers.google.com/web/updates/2019/10/devtools#indentation',
|
|
817
|
-
},
|
|
818
|
-
{
|
|
819
|
-
title: 'New shortcuts for cursor navigation',
|
|
820
|
-
subtitle: 'Press Control+P or Control+N to move your cursor to the line above or below.',
|
|
821
|
-
link: 'https://developers.google.com/web/updates/2019/10/devtools#console',
|
|
822
|
-
},
|
|
823
|
-
],
|
|
824
|
-
link: 'https://developers.google.com/web/updates/2019/10/devtools',
|
|
825
|
-
},
|
|
826
|
-
|
|
827
|
-
{
|
|
828
|
-
version: 20,
|
|
829
|
-
header: 'Highlights from the Chrome 78 update',
|
|
830
|
-
highlights: [
|
|
831
|
-
{
|
|
832
|
-
title: 'Multi-client support in the Audits panel',
|
|
833
|
-
subtitle: 'Use the Audits panel in combination with other features, like Local Overrides or Request Blocking.',
|
|
834
|
-
link: 'https://developers.google.com/web/updates/2019/09/devtools#multiclient',
|
|
835
|
-
},
|
|
836
|
-
{
|
|
837
|
-
title: 'Payment Handler debugging',
|
|
838
|
-
subtitle: 'Record Payment Handler events for 3 days, even when DevTools is closed.',
|
|
839
|
-
link: 'https://developers.google.com/web/updates/2019/09/devtools#payments',
|
|
840
|
-
},
|
|
841
|
-
{
|
|
842
|
-
title: 'Lighthouse 5.2 in the Audits panel',
|
|
843
|
-
subtitle:
|
|
844
|
-
'Measure the impact of third-party code on your load performance with the new Third-Party Usage audit.',
|
|
845
|
-
link: 'https://developers.google.com/web/updates/2019/09/devtools#audits',
|
|
846
|
-
},
|
|
847
|
-
{
|
|
848
|
-
title: 'Largest Contentful Paint (LCP) in the Performance panel',
|
|
849
|
-
subtitle: 'Click the new LCP marker in the Timing section to see the DOM node associated with your LCP.',
|
|
850
|
-
link: 'https://developers.google.com/web/updates/2019/09/devtools#LCP',
|
|
851
|
-
},
|
|
852
|
-
{
|
|
853
|
-
title: 'File issues and feature requests from the Main Menu',
|
|
854
|
-
subtitle:
|
|
855
|
-
'Found a bug? Got an idea on how to improve DevTools? Go to Main Menu > Help > Report a DevTools issue.',
|
|
856
|
-
link: 'https://developers.google.com/web/updates/2019/09/devtools#issues',
|
|
857
|
-
},
|
|
858
|
-
],
|
|
859
|
-
link: 'https://developers.google.com/web/updates/2019/09/devtools',
|
|
860
|
-
},
|
|
861
|
-
{
|
|
862
|
-
version: 19,
|
|
863
|
-
header: 'Highlights from the Chrome 77 update',
|
|
864
|
-
highlights: [
|
|
865
|
-
{
|
|
866
|
-
title: 'Copy element styles',
|
|
867
|
-
subtitle: 'Right-click an element in the DOM Tree and select Copy > Copy Styles.',
|
|
868
|
-
link: 'https://developers.google.com/web/updates/2019/07/devtools#copystyles',
|
|
869
|
-
},
|
|
870
|
-
{
|
|
871
|
-
title: 'Visualize layout shifts',
|
|
872
|
-
subtitle: `Press ${
|
|
873
|
-
commandMenuShortcut}, run Show Rendering, and enable Layout Shift Regions to visualize content shifts.`,
|
|
874
|
-
link: 'https://developers.google.com/web/updates/2019/07/devtools#layoutshifts',
|
|
875
|
-
},
|
|
876
|
-
{
|
|
877
|
-
title: 'Lighthouse 5.1 in the Audits panel',
|
|
878
|
-
subtitle: 'New audits for checking for PWA installability on iOS, keeping resource counts low, and more.',
|
|
879
|
-
link: 'https://developers.google.com/web/updates/2019/07/devtools#audits',
|
|
880
|
-
},
|
|
881
|
-
{
|
|
882
|
-
title: 'OS theme syncing',
|
|
883
|
-
subtitle: 'DevTools now automatically switches to its own dark theme when it detects an OS in dark mode.',
|
|
884
|
-
link: 'https://developers.google.com/web/updates/2019/07/devtools#theming',
|
|
885
|
-
},
|
|
886
|
-
{
|
|
887
|
-
title: 'Keyboard shortcut for opening the Breakpoint Editor',
|
|
888
|
-
subtitle: `Press ${
|
|
889
|
-
Host.Platform.isMac() ?
|
|
890
|
-
'Command+Option+B' :
|
|
891
|
-
'Control+Alt+B'} when focused in the Editor to create Logpoints and Conditional Breakpoints more quickly.`,
|
|
892
|
-
link: 'https://developers.google.com/web/updates/2019/07/devtools#breakpointeditor',
|
|
893
|
-
},
|
|
894
|
-
{
|
|
895
|
-
title: 'Prefetch cache in Network panel',
|
|
896
|
-
subtitle: 'The Size column now indicates whether a resource came from the prefetch cache.',
|
|
897
|
-
link: 'https://developers.google.com/web/updates/2019/07/devtools#prefetch',
|
|
898
|
-
},
|
|
899
|
-
{
|
|
900
|
-
title: 'Private properties when viewing objects',
|
|
901
|
-
subtitle: 'The Console now shows private class fields in its object previews.',
|
|
902
|
-
link: 'https://developers.google.com/web/updates/2019/07/devtools#privateclassfields',
|
|
903
|
-
},
|
|
904
|
-
{
|
|
905
|
-
title: 'Notification and push message logs',
|
|
906
|
-
subtitle:
|
|
907
|
-
'Go to Application > Background Services > Notifications or Messages and click Record to log events for 3 days.',
|
|
908
|
-
link: 'https://developers.google.com/web/updates/2019/07/devtools#backgroundservices',
|
|
909
|
-
},
|
|
910
|
-
],
|
|
911
|
-
link: 'https://developers.google.com/web/updates/2019/07/devtools',
|
|
912
|
-
},
|
|
913
|
-
{
|
|
914
|
-
version: 18,
|
|
915
|
-
header: 'Highlights from the Chrome 76 update',
|
|
916
|
-
highlights: [
|
|
917
|
-
{
|
|
918
|
-
title: 'Autocomplete with CSS keyword values',
|
|
919
|
-
subtitle: 'Typing a keyword value like `bold` in the Styles pane now autocompletes to `font-weight: bold`.',
|
|
920
|
-
link: 'https://developers.google.com/web/updates/2019/05/devtools#values',
|
|
921
|
-
},
|
|
922
|
-
{
|
|
923
|
-
title: 'A new UI for network settings',
|
|
924
|
-
subtitle:
|
|
925
|
-
'The “Use large request rows”, “Group by frame”, “Show overview”, and “Capture screenshots” options have moved to the new Network Settings pane.',
|
|
926
|
-
link: 'https://developers.google.com/web/updates/2019/05/devtools#settings',
|
|
927
|
-
},
|
|
928
|
-
{
|
|
929
|
-
title: 'WebSocket messages in HAR exports',
|
|
930
|
-
subtitle: 'Network logs downloaded from the Network panel now include WebSocket messages.',
|
|
931
|
-
link: 'https://developers.google.com/web/updates/2019/05/devtools#websocket',
|
|
932
|
-
},
|
|
933
|
-
],
|
|
934
|
-
link: 'https://developers.google.com/web/updates/2019/05/devtools',
|
|
935
|
-
},
|
|
936
|
-
{
|
|
937
|
-
version: 17,
|
|
938
|
-
header: 'Highlights from the Chrome 75 update',
|
|
939
|
-
highlights: [
|
|
940
|
-
{
|
|
941
|
-
title: 'Meaningful preset values when autocompleting CSS functions',
|
|
942
|
-
subtitle:
|
|
943
|
-
'Properties like `filter` that take functions for values now autocomplete to previewable values in the Styles pane.',
|
|
944
|
-
link: 'https://developers.google.com/web/updates/2019/04/devtools#presets',
|
|
945
|
-
},
|
|
946
|
-
{
|
|
947
|
-
title: 'Clear site data from the Command Menu',
|
|
948
|
-
subtitle:
|
|
949
|
-
`Press ${commandMenuShortcut} and run the “Clear Site Data” command to clear cookies, storage, and more.`,
|
|
950
|
-
link: 'https://developers.google.com/web/updates/2019/04/devtools#clear',
|
|
951
|
-
},
|
|
952
|
-
{
|
|
953
|
-
title: 'View all IndexedDB databases',
|
|
954
|
-
subtitle: 'The IndexedDB pane now shows databases for all origins rather than just the main origin.',
|
|
955
|
-
link: 'https://developers.google.com/web/updates/2019/04/devtools#indexeddb',
|
|
956
|
-
},
|
|
957
|
-
{
|
|
958
|
-
title: 'View a resource’s uncompressed size on hover',
|
|
959
|
-
subtitle: 'Hover over the Size column in the Network panel to view a resource’s full size.',
|
|
960
|
-
link: 'https://developers.google.com/web/updates/2019/04/devtools#uncompressed',
|
|
961
|
-
},
|
|
962
|
-
{
|
|
963
|
-
title: 'Inline breakpoints in the Breakpoints pane',
|
|
964
|
-
subtitle:
|
|
965
|
-
'When you’ve got multiple breakpoints on a single line of code, the Breakpoints pane now lets you manage each one independently.',
|
|
966
|
-
link: 'https://developers.google.com/web/updates/2019/04/devtools#inline',
|
|
967
|
-
},
|
|
968
|
-
],
|
|
969
|
-
link: 'https://developers.google.com/web/updates/2019/04/devtools',
|
|
970
|
-
},
|
|
971
|
-
{
|
|
972
|
-
version: 16,
|
|
973
|
-
header: 'Highlights from the Chrome 74 update',
|
|
974
|
-
highlights: [
|
|
975
|
-
{
|
|
976
|
-
title: 'Highlight all nodes affected by CSS property',
|
|
977
|
-
subtitle:
|
|
978
|
-
'Hover over a CSS property like padding or margin in the Styles pane to highlight all nodes affected by that declaration.',
|
|
979
|
-
link: 'https://developers.google.com/web/updates/2019/03/devtools#highlight',
|
|
980
|
-
},
|
|
981
|
-
|
|
982
|
-
{
|
|
983
|
-
title: 'Lighthouse v4 in the Audits panel',
|
|
984
|
-
subtitle:
|
|
985
|
-
'Featuring a new “tap targets” audit for checking that mobile links and buttons are properly sized, and a new UI for PWA reports.',
|
|
986
|
-
link: 'https://developers.google.com/web/updates/2019/03/devtools#lighthouse',
|
|
987
|
-
},
|
|
988
|
-
{
|
|
989
|
-
title: 'WebSocket binary message viewer',
|
|
990
|
-
subtitle:
|
|
991
|
-
'Click a WebSocket connection in the Network Log, go to the Messages tab, then click a binary message to view its contents.',
|
|
992
|
-
link: 'https://developers.google.com/web/updates/2019/03/devtools#binary',
|
|
993
|
-
},
|
|
994
|
-
{
|
|
995
|
-
title: 'Capture area screenshot in the Command Menu',
|
|
996
|
-
subtitle: 'Press ' + commandMenuShortcut +
|
|
997
|
-
', run the “Capture area screenshot” command, and then drag your mouse to take a screenshot of part of the viewport.',
|
|
998
|
-
link: 'https://developers.google.com/web/updates/2019/03/devtools#screenshot',
|
|
999
|
-
},
|
|
1000
|
-
{
|
|
1001
|
-
title: 'Service worker filters in the Network panel',
|
|
1002
|
-
subtitle:
|
|
1003
|
-
'Type `is:service-worker-initiated` or `is:service-worker-intercepted` to only show service worker activity.',
|
|
1004
|
-
link: 'https://developers.google.com/web/updates/2019/03/devtools#swfilters',
|
|
1005
|
-
},
|
|
1006
|
-
],
|
|
1007
|
-
link: 'https://developers.google.com/web/updates/2019/03/devtools',
|
|
1008
|
-
},
|
|
1009
|
-
{
|
|
1010
|
-
version: 15,
|
|
1011
|
-
header: 'Highlights from the Chrome 73 update',
|
|
1012
|
-
highlights: [
|
|
1013
|
-
{
|
|
1014
|
-
title: 'Logpoints',
|
|
1015
|
-
subtitle: 'Log messages to the Console without cluttering up your code with `console.log()` calls.',
|
|
1016
|
-
link: 'https://developers.google.com/web/updates/2019/01/devtools#logpoints',
|
|
1017
|
-
},
|
|
1018
|
-
{
|
|
1019
|
-
title: 'Detailed tooltips in Inspect Mode',
|
|
1020
|
-
subtitle: 'When inspecting a node, DevTools now shows an expanded tooltip containing text, ' +
|
|
1021
|
-
'color contrast, and box model information.',
|
|
1022
|
-
link: 'https://developers.google.com/web/updates/2019/01/devtools#inspect',
|
|
1023
|
-
},
|
|
1024
|
-
{
|
|
1025
|
-
title: 'Export code coverage data',
|
|
1026
|
-
subtitle: 'The Coverage tab now supports exporting coverage data as JSON.',
|
|
1027
|
-
link: 'https://developers.google.com/web/updates/2019/01/devtools#coverage',
|
|
1028
|
-
},
|
|
1029
|
-
{
|
|
1030
|
-
title: 'Navigate the Console with the keyboard',
|
|
1031
|
-
subtitle: 'Press Shift+Tab to focus the last message and then use the arrow keys to navigate.',
|
|
1032
|
-
link: 'https://developers.google.com/web/updates/2019/01/devtools#keyboard',
|
|
1033
|
-
},
|
|
1034
|
-
{
|
|
1035
|
-
title: 'Save custom location overrides',
|
|
1036
|
-
subtitle: 'Click Manage in the Sensors tab or open Settings > Locations.',
|
|
1037
|
-
link: 'https://developers.google.com/web/updates/2019/01/devtools#geolocation',
|
|
1038
|
-
},
|
|
1039
|
-
{
|
|
1040
|
-
title: 'Code folding',
|
|
1041
|
-
subtitle: 'Go to Settings > Preferences > Sources and enable Code Folding to fold ' +
|
|
1042
|
-
'code in the Sources panel.',
|
|
1043
|
-
link: 'https://developers.google.com/web/updates/2019/01/devtools#folding',
|
|
1044
|
-
},
|
|
1045
|
-
],
|
|
1046
|
-
link: 'https://developers.google.com/web/updates/2019/01/devtools',
|
|
1047
|
-
},
|
|
1048
|
-
{
|
|
1049
|
-
version: 14,
|
|
1050
|
-
header: 'Highlights from the Chrome 72 update',
|
|
1051
|
-
highlights: [
|
|
1052
|
-
{
|
|
1053
|
-
title: 'Visualize performance metrics',
|
|
1054
|
-
subtitle:
|
|
1055
|
-
'Performance metrics like DOMContentLoaded and First Meaningful Paint are now marked in the Timings section of the Performance panel.',
|
|
1056
|
-
link: 'https://developers.google.com/web/updates/2018/11/devtools#metrics',
|
|
1057
|
-
},
|
|
1058
|
-
{
|
|
1059
|
-
title: 'Highlight text nodes',
|
|
1060
|
-
subtitle: 'Hover over a text node in the DOM Tree to highlight it in the viewport.',
|
|
1061
|
-
link: 'https://developers.google.com/web/updates/2018/11/devtools#highlight',
|
|
1062
|
-
},
|
|
1063
|
-
{
|
|
1064
|
-
title: 'Copy JS path',
|
|
1065
|
-
subtitle:
|
|
1066
|
-
'Right-click a DOM node and select “Copy” > “Copy JS path” to quickly get a JavaScript expression that points to that node.',
|
|
1067
|
-
link: 'https://developers.google.com/web/updates/2018/11/devtools#copy',
|
|
1068
|
-
},
|
|
1069
|
-
{
|
|
1070
|
-
title: 'Audits panel updates',
|
|
1071
|
-
subtitle:
|
|
1072
|
-
'A new audit that lists detected JS libraries and new keywords for accessing the Audits panel from the Command Menu.',
|
|
1073
|
-
link: 'https://developers.google.com/web/updates/2018/11/devtools#audits',
|
|
1074
|
-
},
|
|
1075
|
-
],
|
|
1076
|
-
link: 'https://developers.google.com/web/updates/2018/11/devtools',
|
|
1077
|
-
},
|
|
1078
|
-
{
|
|
1079
|
-
version: 13,
|
|
1080
|
-
header: 'Highlights from the Chrome 71 update',
|
|
1081
|
-
highlights: [
|
|
1082
|
-
{
|
|
1083
|
-
title: 'Hover over a Live Expression to highlight a DOM node',
|
|
1084
|
-
subtitle: 'Hover over a result that evaluates to a node to highlight that node in the viewport.',
|
|
1085
|
-
link: 'https://developers.google.com/web/updates/2018/10/devtools#hover',
|
|
1086
|
-
},
|
|
1087
|
-
{
|
|
1088
|
-
title: 'Store DOM nodes as global variables',
|
|
1089
|
-
subtitle: 'Right-click a node in the Elements panel or Console and select “Store as global variable”.',
|
|
1090
|
-
link: 'https://developers.google.com/web/updates/2018/10/devtools#store',
|
|
1091
|
-
},
|
|
1092
|
-
{
|
|
1093
|
-
title: 'Initiator and priority information now in HAR imports and exports',
|
|
1094
|
-
subtitle:
|
|
1095
|
-
'Get more context around what caused a resource to be requested and what priority the browser assigned to each resource when sharing network logs.',
|
|
1096
|
-
link: 'https://developers.google.com/web/updates/2018/10/devtools#HAR',
|
|
1097
|
-
},
|
|
1098
|
-
{
|
|
1099
|
-
title: 'Access the Command Menu from the Main Menu',
|
|
1100
|
-
subtitle: 'Open the Main Menu and select “Run command”.',
|
|
1101
|
-
link: 'https://developers.google.com/web/updates/2018/10/devtools#command-menu',
|
|
1102
|
-
},
|
|
1103
|
-
],
|
|
1104
|
-
link: 'https://developers.google.com/web/updates/2018/10/devtools',
|
|
1105
|
-
},
|
|
1106
|
-
{
|
|
1107
|
-
version: 12,
|
|
1108
|
-
header: 'Highlights from the Chrome 70 update',
|
|
1109
|
-
highlights: [
|
|
1110
|
-
{
|
|
1111
|
-
title: 'Live Expressions in the Console',
|
|
1112
|
-
subtitle: 'Pin expressions to the top of the Console to monitor their values in real-time.',
|
|
1113
|
-
link: 'https://developers.google.com/web/updates/2018/08/devtools#watch',
|
|
1114
|
-
},
|
|
1115
|
-
{
|
|
1116
|
-
title: 'Highlight DOM nodes during Eager Evaluation',
|
|
1117
|
-
subtitle: 'Type an expression that evaluates to a node to highlight that node in the viewport.',
|
|
1118
|
-
link: 'https://developers.google.com/web/updates/2018/08/devtools#nodes',
|
|
1119
|
-
},
|
|
1120
|
-
{
|
|
1121
|
-
title: 'Autocomplete Conditional Breakpoints',
|
|
1122
|
-
subtitle: 'Type expressions quickly and accurately.',
|
|
1123
|
-
link: 'https://developers.google.com/web/updates/2018/08/devtools#autocomplete',
|
|
1124
|
-
},
|
|
1125
|
-
{
|
|
1126
|
-
title: 'Performance panel optimizations',
|
|
1127
|
-
subtitle: 'Faster loading and processing of Performance recordings.',
|
|
1128
|
-
link: 'https://developers.google.com/web/updates/2018/08/devtools#performance',
|
|
1129
|
-
},
|
|
1130
|
-
{
|
|
1131
|
-
title: 'More reliable debugging',
|
|
1132
|
-
subtitle: 'Bug fixes for sourcemaps and blackboxing.',
|
|
1133
|
-
link: 'https://developers.google.com/web/updates/2018/08/devtools#debugging',
|
|
1134
|
-
},
|
|
1135
|
-
{
|
|
1136
|
-
title: 'Debug Node.js apps with ndb',
|
|
1137
|
-
subtitle:
|
|
1138
|
-
'Detect and attach to child processes, place breakpoints before modules are required, edit files within DevTools, and more.',
|
|
1139
|
-
link: 'https://developers.google.com/web/updates/2018/08/devtools#ndb',
|
|
1140
|
-
},
|
|
1141
|
-
],
|
|
1142
|
-
link: 'https://developers.google.com/web/updates/2018/08/devtools',
|
|
1143
|
-
},
|
|
1144
|
-
{
|
|
1145
|
-
version: 11,
|
|
1146
|
-
header: 'Highlights from the Chrome 68 update',
|
|
1147
|
-
highlights: [
|
|
1148
|
-
{
|
|
1149
|
-
title: 'Eager evaluation',
|
|
1150
|
-
subtitle: 'Preview return values in the Console without explicitly executing expressions.',
|
|
1151
|
-
link: 'https://developers.google.com/web/updates/2018/05/devtools#eagerevaluation',
|
|
1152
|
-
},
|
|
1153
|
-
{
|
|
1154
|
-
title: 'Argument hints',
|
|
1155
|
-
subtitle: 'View a function’s expected arguments in the Console.',
|
|
1156
|
-
link: 'https://developers.google.com/web/updates/2018/05/devtools#hints',
|
|
1157
|
-
},
|
|
1158
|
-
{
|
|
1159
|
-
title: 'Function autocompletion',
|
|
1160
|
-
subtitle: 'View available properties and methods after calling a function in the Console.',
|
|
1161
|
-
link: 'https://developers.google.com/web/updates/2018/05/devtools#autocomplete',
|
|
1162
|
-
},
|
|
1163
|
-
{
|
|
1164
|
-
title: 'Audits panel updates',
|
|
1165
|
-
subtitle: 'Faster, more consisent audits, a new UI, and new audits, thanks to Lighthouse 3.0.',
|
|
1166
|
-
link: 'https://developers.google.com/web/updates/2018/05/devtools#lh3',
|
|
1167
|
-
},
|
|
1168
|
-
],
|
|
1169
|
-
link: 'https://developers.google.com/web/updates/2018/05/devtools',
|
|
1170
|
-
},
|
|
1171
|
-
{
|
|
1172
|
-
version: 10,
|
|
1173
|
-
header: 'Highlights from the Chrome 67 update',
|
|
1174
|
-
highlights: [
|
|
1175
|
-
{
|
|
1176
|
-
title: 'Search across all network headers',
|
|
1177
|
-
subtitle: `Press ${networkSearchShortcut} in the Network panel to open the Network Search pane.`,
|
|
1178
|
-
link: 'https://developers.google.com/web/updates/2018/04/devtools#network-search',
|
|
1179
|
-
},
|
|
1180
|
-
{
|
|
1181
|
-
title: 'CSS variable value previews in the Styles pane',
|
|
1182
|
-
subtitle: 'When a property value is a CSS variable, DevTools now shows a color preview next to the variable.',
|
|
1183
|
-
link: 'https://developers.google.com/web/updates/2018/04/devtools#vars',
|
|
1184
|
-
},
|
|
1185
|
-
{
|
|
1186
|
-
title: 'Stop infinite loops',
|
|
1187
|
-
subtitle: 'Pause JavaScript execution then select the new Stop Current JavaScript Call button.',
|
|
1188
|
-
link: 'https://developers.google.com/web/updates/2018/04/devtools#stop',
|
|
1189
|
-
},
|
|
1190
|
-
{
|
|
1191
|
-
title: 'Copy as fetch',
|
|
1192
|
-
subtitle: 'Right-click a network request then select Copy > Copy as fetch.',
|
|
1193
|
-
link: 'https://developers.google.com/web/updates/2018/04/devtools#fetch',
|
|
1194
|
-
},
|
|
1195
|
-
{
|
|
1196
|
-
title: 'More audits',
|
|
1197
|
-
subtitle: 'Two new audits, desktop configuration options, and viewing traces.',
|
|
1198
|
-
link: 'https://developers.google.com/web/updates/2018/04/devtools#audits',
|
|
1199
|
-
},
|
|
1200
|
-
{
|
|
1201
|
-
title: 'User Timing in the Performance tabs',
|
|
1202
|
-
subtitle: 'Click the User Timing section to view measures in the Summary, Bottom-Up, and Call Tree tabs.',
|
|
1203
|
-
link: 'https://developers.google.com/web/updates/2018/04/devtools#tabs',
|
|
1204
|
-
},
|
|
1205
|
-
],
|
|
1206
|
-
link: 'https://developers.google.com/web/updates/2018/04/devtools',
|
|
1207
|
-
},
|
|
1208
|
-
{
|
|
1209
|
-
version: 9,
|
|
1210
|
-
header: 'Highlights from the Chrome 66 update',
|
|
1211
|
-
highlights: [
|
|
1212
|
-
{
|
|
1213
|
-
title: 'Pretty-printing in the Preview and Response tabs',
|
|
1214
|
-
subtitle: 'The Preview tab now pretty-prints by default, and you can force ' +
|
|
1215
|
-
'pretty-printing in the Response tab via the new Format button.',
|
|
1216
|
-
link: 'https://developers.google.com/web/updates/2018/02/devtools#pretty-printing',
|
|
1217
|
-
},
|
|
1218
|
-
{
|
|
1219
|
-
title: 'Previewing HTML content in the Preview tab',
|
|
1220
|
-
subtitle: 'The Preview tab now always does a basic rendering of HTML content.',
|
|
1221
|
-
link: 'https://developers.google.com/web/updates/2018/02/devtools#previews',
|
|
1222
|
-
},
|
|
1223
|
-
{
|
|
1224
|
-
title: 'Local Overrides with styles defined in HTML',
|
|
1225
|
-
subtitle: 'Local Overrides now works with styles defined in HTML, with one exception.',
|
|
1226
|
-
link: 'https://developers.google.com/web/updates/2018/02/devtools#overrides',
|
|
1227
|
-
},
|
|
1228
|
-
{
|
|
1229
|
-
title: 'Blackboxing in the Initiator column',
|
|
1230
|
-
subtitle: 'Hide framework scripts in order to see the app code that caused a request.',
|
|
1231
|
-
link: 'https://developers.google.com/web/updates/2018/02/devtools#blackboxing',
|
|
1232
|
-
},
|
|
1233
|
-
],
|
|
1234
|
-
link: 'https://developers.google.com/web/updates/2018/02/devtools',
|
|
1235
|
-
},
|
|
1236
|
-
{
|
|
1237
|
-
version: 8,
|
|
1238
|
-
header: 'Highlights from the Chrome 65 update',
|
|
1239
|
-
highlights: [
|
|
1240
|
-
{
|
|
1241
|
-
title: 'Local overrides',
|
|
1242
|
-
subtitle: 'Override network requests and serve local resources instead.',
|
|
1243
|
-
link: 'https://developers.google.com/web/updates/2018/01/devtools#overrides',
|
|
1244
|
-
},
|
|
1245
|
-
{
|
|
1246
|
-
title: 'Changes tab',
|
|
1247
|
-
subtitle: 'Track changes that you make locally in DevTools via the Changes tab.',
|
|
1248
|
-
link: 'https://developers.google.com/web/updates/2018/01/devtools#changes',
|
|
1249
|
-
},
|
|
1250
|
-
{
|
|
1251
|
-
title: 'New accessibility tools',
|
|
1252
|
-
subtitle: 'Inspect the accessibility properties and contrast ratio of elements.',
|
|
1253
|
-
link: 'https://developers.google.com/web/updates/2018/01/devtools#a11y',
|
|
1254
|
-
},
|
|
1255
|
-
{
|
|
1256
|
-
title: 'New audits',
|
|
1257
|
-
subtitle: 'New performance audits, a whole new category of SEO audits, and more.',
|
|
1258
|
-
link: 'https://developers.google.com/web/updates/2018/01/devtools#audits',
|
|
1259
|
-
},
|
|
1260
|
-
{
|
|
1261
|
-
title: 'Code stepping updates',
|
|
1262
|
-
subtitle: 'Reliably step into web worker and asynchronous code.',
|
|
1263
|
-
link: 'https://developers.google.com/web/updates/2018/01/devtools#stepping',
|
|
1264
|
-
},
|
|
1265
|
-
{
|
|
1266
|
-
title: 'Multiple recordings in the Performance panel',
|
|
1267
|
-
subtitle: 'Temporarily save up to 5 recordings.',
|
|
1268
|
-
link: 'https://developers.google.com/web/updates/2018/01/devtools#recordings',
|
|
1269
|
-
},
|
|
1270
|
-
],
|
|
1271
|
-
link: 'https://developers.google.com/web/updates/2018/01/devtools',
|
|
1272
|
-
},
|
|
1273
|
-
{
|
|
1274
|
-
version: 7,
|
|
1275
|
-
header: 'Highlights from the Chrome 64 update',
|
|
1276
|
-
highlights: [
|
|
1277
|
-
{
|
|
1278
|
-
title: 'Performance monitor',
|
|
1279
|
-
subtitle: 'Get a real-time view of various performance metrics.',
|
|
1280
|
-
link: 'https://developers.google.com/web/updates/2017/11/devtools-release-notes#perf-monitor',
|
|
1281
|
-
},
|
|
1282
|
-
{
|
|
1283
|
-
title: 'Console sidebar',
|
|
1284
|
-
subtitle: 'Reduce console noise and focus on the messages that are important to you.',
|
|
1285
|
-
link: 'https://developers.google.com/web/updates/2017/11/devtools-release-notes#console-sidebar',
|
|
1286
|
-
},
|
|
1287
|
-
{
|
|
1288
|
-
title: 'Group similar console messages',
|
|
1289
|
-
subtitle: 'The Console now groups similar messages by default.',
|
|
1290
|
-
link: 'https://developers.google.com/web/updates/2017/11/devtools-release-notes#group-similar',
|
|
1291
|
-
},
|
|
1292
|
-
],
|
|
1293
|
-
link: 'https://developers.google.com/web/updates/2017/11/devtools-release-notes',
|
|
1294
|
-
},
|
|
1295
|
-
{
|
|
1296
|
-
version: 6,
|
|
1297
|
-
header: 'Highlights from the Chrome 63 update',
|
|
1298
|
-
highlights: [
|
|
1299
|
-
{
|
|
1300
|
-
title: 'Multi-client remote debugging',
|
|
1301
|
-
subtitle: 'Use DevTools while debugging your app from an IDE or testing framework.',
|
|
1302
|
-
link: 'https://developers.google.com/web/updates/2017/10/devtools-release-notes#multi-client',
|
|
1303
|
-
},
|
|
1304
|
-
{
|
|
1305
|
-
title: 'Workspaces 2.0',
|
|
1306
|
-
subtitle: 'Save changes made in DevTools to disk, now with more helpful UI and better auto-mapping.',
|
|
1307
|
-
link: 'https://developers.google.com/web/updates/2017/10/devtools-release-notes#workspaces',
|
|
1308
|
-
},
|
|
1309
|
-
{
|
|
1310
|
-
title: 'Four new audits',
|
|
1311
|
-
subtitle:
|
|
1312
|
-
'Including “Appropriate aspect ratios for images”, “Avoid JS libraries with known vulnerabilities”, and more.',
|
|
1313
|
-
link: 'https://developers.google.com/web/updates/2017/10/devtools-release-notes#audits',
|
|
1314
|
-
},
|
|
1315
|
-
{
|
|
1316
|
-
title: 'Custom push notifications',
|
|
1317
|
-
subtitle: 'Simulate push notifications with custom data.',
|
|
1318
|
-
link: 'https://developers.google.com/web/updates/2017/10/devtools-release-notes#push',
|
|
1319
|
-
},
|
|
1320
|
-
{
|
|
1321
|
-
title: 'Custom background sync events',
|
|
1322
|
-
subtitle: 'Trigger background sync events with custom tags.',
|
|
1323
|
-
link: 'https://developers.google.com/web/updates/2017/10/devtools-release-notes#sync',
|
|
1324
|
-
},
|
|
1325
|
-
],
|
|
1326
|
-
link: 'https://developers.google.com/web/updates/2017/10/devtools-release-notes',
|
|
1327
|
-
},
|
|
1328
|
-
{
|
|
1329
|
-
version: 5,
|
|
1330
|
-
header: 'Highlights from the Chrome 62 update',
|
|
1331
|
-
highlights: [
|
|
1332
|
-
{
|
|
1333
|
-
title: 'Top-level await operators in the Console',
|
|
1334
|
-
subtitle: 'Use await to conveniently experiment with asynchronous functions in the Console.',
|
|
1335
|
-
link: 'https://developers.google.com/web/updates/2017/08/devtools-release-notes#await',
|
|
1336
|
-
},
|
|
1337
|
-
{
|
|
1338
|
-
title: 'New screenshot workflows',
|
|
1339
|
-
subtitle: 'Take screenshots of a portion of the viewport, or of specific HTML nodes.',
|
|
1340
|
-
link: 'https://developers.google.com/web/updates/2017/08/devtools-release-notes#screenshots',
|
|
1341
|
-
},
|
|
1342
|
-
{
|
|
1343
|
-
title: 'CSS Grid highlighting',
|
|
1344
|
-
subtitle: 'Hover over an element to see the CSS Grid that’s affecting it.',
|
|
1345
|
-
link: 'https://developers.google.com/web/updates/2017/08/devtools-release-notes#css-grid-highlighting',
|
|
1346
|
-
},
|
|
1347
|
-
{
|
|
1348
|
-
title: 'A new Console API for querying objects',
|
|
1349
|
-
subtitle: 'Call `queryObjects(Constructor)` to get an array of objects instantiated with that constructor.',
|
|
1350
|
-
link: 'https://developers.google.com/web/updates/2017/08/devtools-release-notes#query-objects',
|
|
1351
|
-
},
|
|
1352
|
-
{
|
|
1353
|
-
title: 'New Console filters',
|
|
1354
|
-
subtitle: 'Filter out logging noise with the new negative and URL filters.',
|
|
1355
|
-
link: 'https://developers.google.com/web/updates/2017/08/devtools-release-notes#console-filters',
|
|
1356
|
-
},
|
|
1357
|
-
{
|
|
1358
|
-
title: 'HAR imports in the Network panel',
|
|
1359
|
-
subtitle: 'Drag-and-drop a HAR file to analyze a previous network recording.',
|
|
1360
|
-
link: 'https://developers.google.com/web/updates/2017/08/devtools-release-notes#har-imports',
|
|
1361
|
-
},
|
|
1362
|
-
{
|
|
1363
|
-
title: 'Previewable cache resources in the Application panel',
|
|
1364
|
-
subtitle: 'Click a row in a Cache Storage table to see a preview of that resource.',
|
|
1365
|
-
link: 'https://developers.google.com/web/updates/2017/08/devtools-release-notes#cache-preview',
|
|
1366
|
-
},
|
|
1367
|
-
],
|
|
1368
|
-
link: 'https://developers.google.com/web/updates/2017/08/devtools-release-notes',
|
|
1369
|
-
},
|
|
1370
|
-
{
|
|
1371
|
-
version: 4,
|
|
1372
|
-
header: 'Highlights from the Chrome 61 update',
|
|
1373
|
-
highlights: [
|
|
1374
|
-
{
|
|
1375
|
-
title: 'Mobile device throttling',
|
|
1376
|
-
subtitle: 'Simulate a mobile device’s CPU and network throttling from Device Mode.',
|
|
1377
|
-
link: 'https://developers.google.com/web/updates/2017/07/devtools-release-notes#throttling',
|
|
1378
|
-
},
|
|
1379
|
-
{
|
|
1380
|
-
title: 'Storage usage',
|
|
1381
|
-
subtitle: 'See how much storage (IndexedDB, local, session, cache, etc.) an origin is using.',
|
|
1382
|
-
link: 'https://developers.google.com/web/updates/2017/07/devtools-release-notes#storage',
|
|
1383
|
-
},
|
|
1384
|
-
{
|
|
1385
|
-
title: 'Cache timestamps',
|
|
1386
|
-
subtitle: 'View when a service worker cached a response.',
|
|
1387
|
-
link: 'https://developers.google.com/web/updates/2017/07/devtools-release-notes#time-cached',
|
|
1388
|
-
},
|
|
1389
|
-
{
|
|
1390
|
-
title: 'ES6 Modules support',
|
|
1391
|
-
subtitle: 'Debug ES6 Modules natively from the Sources panel.',
|
|
1392
|
-
link: 'https://developers.google.com/web/updates/2017/07/devtools-release-notes#modules',
|
|
1393
|
-
},
|
|
1394
|
-
],
|
|
1395
|
-
link: 'https://developers.google.com/web/updates/2017/07/devtools-release-notes',
|
|
1396
|
-
},
|
|
1397
|
-
{
|
|
1398
|
-
version: 3,
|
|
1399
|
-
header: 'Highlights from the Chrome 60 update',
|
|
1400
|
-
highlights: [
|
|
1401
|
-
{
|
|
1402
|
-
title: 'New Audits panel, powered by Lighthouse',
|
|
1403
|
-
subtitle:
|
|
1404
|
-
'Find out whether your site qualifies as a Progressive Web App, measure the accessibility and performance of a page, and discover best practices.',
|
|
1405
|
-
link: 'https://developers.google.com/web/updates/2017/05/devtools-release-notes#lighthouse',
|
|
1406
|
-
},
|
|
1407
|
-
{
|
|
1408
|
-
title: 'Third-party badges',
|
|
1409
|
-
subtitle:
|
|
1410
|
-
'See what third-party entities are logging to the Console, making network requests, and causing work during performance recordings.',
|
|
1411
|
-
link: 'https://developers.google.com/web/updates/2017/05/devtools-release-notes#badges',
|
|
1412
|
-
},
|
|
1413
|
-
{
|
|
1414
|
-
title: 'New "Continue to Here" gesture',
|
|
1415
|
-
subtitle: 'While paused on a line of code, hold ' + continueToHereShortcut +
|
|
1416
|
-
' and then click to continue to another line of code.',
|
|
1417
|
-
link: 'https://developers.google.com/web/updates/2017/05/devtools-release-notes#continue',
|
|
1418
|
-
},
|
|
1419
|
-
{
|
|
1420
|
-
title: 'Step into async',
|
|
1421
|
-
subtitle: 'Predictably step into a promise resolution or other asynchronous code with a single gesture.',
|
|
1422
|
-
link: 'https://developers.google.com/web/updates/2017/05/devtools-release-notes#step-into-async',
|
|
1423
|
-
},
|
|
1424
|
-
{
|
|
1425
|
-
title: 'More informative object previews',
|
|
1426
|
-
subtitle: 'Get a better idea of the contents of objects when logging them to the Console.',
|
|
1427
|
-
link: 'https://developers.google.com/web/updates/2017/05/devtools-release-notes#object-previews',
|
|
1428
|
-
},
|
|
1429
|
-
{
|
|
1430
|
-
title: 'Real-time Coverage tab updates',
|
|
1431
|
-
subtitle: 'See what code is being used in real-time.',
|
|
1432
|
-
link: 'https://developers.google.com/web/updates/2017/05/devtools-release-notes#coverage',
|
|
1433
|
-
},
|
|
1434
|
-
],
|
|
1435
|
-
link: 'https://developers.google.com/web/updates/2017/05/devtools-release-notes',
|
|
1436
|
-
},
|
|
1437
|
-
{
|
|
1438
|
-
version: 2,
|
|
1439
|
-
header: 'Highlights from Chrome 59 update',
|
|
1440
|
-
highlights: [
|
|
1441
|
-
{
|
|
1442
|
-
title: 'CSS and JS code coverage',
|
|
1443
|
-
subtitle: 'Find unused CSS and JS with the new Coverage drawer.',
|
|
1444
|
-
link: 'https://developers.google.com/web/updates/2017/04/devtools-release-notes#coverage',
|
|
1445
|
-
},
|
|
1446
|
-
{
|
|
1447
|
-
title: 'Full-page screenshots',
|
|
1448
|
-
subtitle: 'Take a screenshot of the entire page, from the top of the viewport to the bottom.',
|
|
1449
|
-
link: 'https://developers.google.com/web/updates/2017/04/devtools-release-notes#screenshots',
|
|
1450
|
-
},
|
|
1451
|
-
{
|
|
1452
|
-
title: 'Block requests',
|
|
1453
|
-
subtitle: 'Manually disable individual requests in the Network panel.',
|
|
1454
|
-
link: 'https://developers.google.com/web/updates/2017/04/devtools-release-notes#block-requests',
|
|
1455
|
-
},
|
|
1456
|
-
{
|
|
1457
|
-
title: 'Step over async await',
|
|
1458
|
-
subtitle: 'Step through async functions predictably.',
|
|
1459
|
-
link: 'https://developers.google.com/web/updates/2017/04/devtools-release-notes#async',
|
|
1460
|
-
},
|
|
1461
|
-
{
|
|
1462
|
-
title: 'Unified Command Menu',
|
|
1463
|
-
subtitle: 'Execute commands and open files from the newly-unified Command Menu (' + commandMenuShortcut + ').',
|
|
1464
|
-
link: 'https://developers.google.com/web/updates/2017/04/devtools-release-notes#command-menu',
|
|
1465
|
-
},
|
|
1466
|
-
],
|
|
1467
|
-
link: 'https://developers.google.com/web/updates/2017/04/devtools-release-notes',
|
|
1468
|
-
},
|
|
1469
|
-
{
|
|
1470
|
-
version: 1,
|
|
1471
|
-
header: 'Highlights from Chrome 58 update',
|
|
1472
|
-
highlights: [
|
|
1473
|
-
{
|
|
1474
|
-
title: 'New Performance and Memory panels',
|
|
1475
|
-
subtitle: 'Head to Performance for JavaScript profiling',
|
|
1476
|
-
link: 'https://developers.google.com/web/updates/2017/03/devtools-release-notes#performance-panel',
|
|
1477
|
-
},
|
|
1478
|
-
{
|
|
1479
|
-
title: 'Editable cookies',
|
|
1480
|
-
subtitle: 'You can edit any existing cookies and create new ones in the Application panel',
|
|
1481
|
-
link: 'https://developers.google.com/web/updates/2017/03/devtools-release-notes#cookies',
|
|
1482
|
-
},
|
|
1483
|
-
{
|
|
1484
|
-
title: 'Console filtering & settings',
|
|
1485
|
-
subtitle: 'Use the text filter or click the Console settings icon to touch up your preferences',
|
|
1486
|
-
link: 'https://developers.google.com/web/updates/2017/03/devtools-release-notes#console',
|
|
1487
|
-
},
|
|
1488
|
-
{
|
|
1489
|
-
title: 'Debugger catches out-of-memory errors',
|
|
1490
|
-
subtitle: 'See the stack or grab a heap snapshot to see why the app may crash',
|
|
1491
|
-
link: 'https://developers.google.com/web/updates/2017/03/devtools-release-notes#out-of-memory-breakpoints',
|
|
1492
|
-
},
|
|
1493
|
-
],
|
|
1494
|
-
link: 'https://developers.google.com/web/updates/2017/03/devtools-release-notes',
|
|
1495
|
-
},
|
|
1496
|
-
];
|