opera.contexts.toolbar.addItem()

Description

This method adds a Button to the toolbar in the browser. To create a Button see the createItem method.

Parameters:

  • item: The Button to be added.

Syntax:

void addItem (<Button> item)

Example:

//
// The background process (e.g. index.html)
//

// Create a button
var button = opera.contexts.toolbar.createItem({
  title: 'Weather Extension',
  icon: 'yr.png'
});

// Add it to the browser UI
opera.contexts.toolbar.addItem(button);

This article is licensed under a Creative Commons Attribution 3.0 Unported license.

Comments

You must be logged in to write a comment. If you're not a registered member, please sign up.