panels property
JSDevtoolsPanels
get
panels
Use the chrome.devtools.panels
API to integrate your extension into
Developer Tools window UI: create your own panels, access existing panels,
and add sidebars.
Implementation
JSDevtoolsPanels get panels {
var panelsNullable = this.panelsNullable;
if (panelsNullable == null) {
throw ApiNotAvailableException('chrome.devtools.panels');
}
return panelsNullable;
}