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.
widget
elementname
elementdescription
elementauthor
elementlicense
elementicon
elementcontent
elementfeature
elementpreference
elementwidget.preferences
.access
elementspan
elementxml:lang
attributedir
attributeThe mandatory config.xml file gives the Opera browser relevant information about an Opera extension, such as the name, description and version.
Most of the information in this file (information such as the name, description, author name of the extension, etc.) is also useful to the end user as it is shown in various places in Opera's user interface.
A well-formed config.xml file is mandatory for every Opera extension.
For full documentation on config.xml, see the:
Below is an example config.xml file including the usual meta elements like name
, author
and description
. It also contains the following two useful elements:
<feature>
element<access>
elementaccess
element to request access to share and get information from this domain.<?xml version="1.0" encoding="utf-8"?>
<widget xmlns="http://www.w3.org/ns/widgets" id="http://my.opera.com/chooseopera/xml/rss/blog/" viewmodes="minimized" version="1.0">
<name>Opera news</name>
<author>John Smith</author>
<description>Stay up to date with the latest news from Opera, served to you inside Speed Dial</description>
<icon src="images/icon.64x64.png"/>
<feature name="opera:speeddial" required="true">
<param name="url" value="http://my.opera.com/chooseopera/blog/"/>
</feature>
<access origin="http://my.opera.com/" subdomains="true"/>
</widget>
Figure 1 shows the extension manager where the details for the extension have been taken from the config.xml file above.
As the markup example shows, much of the information written in the config.xml file helps the user ascertain various details about the extension. The following sections on this page will look at the elements and attributes to keep in mind when marking up the config.xml file.
Read the Dev.Opera article The ins and outs of config.xml for further details regarding the config.xml file.