windows property

JSWindows get windows

Use the chrome.windows API to interact with browser windows. You can use this API to create, modify, and rearrange windows in the browser.

Implementation

JSWindows get windows {
  var windowsNullable = this.windowsNullable;
  if (windowsNullable == null) {
    throw ApiNotAvailableException('chrome.windows');
  }
  return windowsNullable;
}