« Documentation Home

Speed Dial viewmodes attribute

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:

Indicates whether the extension should be run in a minimized state by using a value of minimized. It is not mandatory that the minimized view mode be explicitly used through CSS in the background process—so long as the extension declares that the minimized view mode is supported, the background process will be rendered regardless.

Example:

This example shows how a developer indicates that their extension supports the minimized view mode.

<!-- config.xml -->
<widget xmlns="http://www.w3.org/ns/widgets"
    id="http://example.com/myextension"
    defaultlocale="en"
    viewmodes="minimized">
  ...
</widget>