« Documentation Home

opera.contexts.speeddial.title

This documentation relates to Opera's now deprecated .oex Extension API framework for Opera versions <= 12.15 and also provided by our OEX2NEX shim library.

For the latest Opera Extensions API documentation for Opera versions > 12.15 please consult the latest Opera Extensions API documentation online.

Description:

Represents the human-readable title given to a Speed Dial cell. If not specified, the default value is the extension's name (specified in the config.xml's name element).

Example:

//
// The background process ('/background.js').
//

// First check the opera.contexts.speeddial object is available
if (opera.contexts.speeddial) {
  var sd = opera.contexts.speeddial;
  
  // Set the Speed Dial's visible title
  sd.title = "Opera";
}