browserAction property

JSBrowserAction get browserAction

Use browser actions to put icons in the main Google Chrome toolbar, to the right of the address bar. In addition to its icon, a browser action can have a tooltip, a badge, and a popup.

Implementation

JSBrowserAction get browserAction {
  var browserActionNullable = this.browserActionNullable;
  if (browserActionNullable == null) {
    throw ApiNotAvailableException('chrome.browserAction');
  }
  return browserActionNullable;
}