Chrome DevTools: Enhanced autocomplete features in the Console Panel
Last updated: 20th July 2020The auto-completion/auto-suggestion feature has received some nice upgrades.
- Suggestion Subtitles shows the type of item in the autosuggest box (e.g.
Window
,Object
,<Class Name>
). - Autocomplete now works from the middle of a line.
- The
Map()
object now works well with autocomplete. Here's an example you can try in Canary:
// Create a map
map = new Map();
map.set('hello', 'world');
map.set('animal', 'cat');
map.set('number', 42);
// Now type
map.get(
// And observe the autosuggest values you can select
map.get("animal")
map.get("hello")
map.get("number")
Update: Network Throttling Profiles is in Chrome Stable!