Differences between desktop and Android extensions

There are some important distinctions to be aware of when developing an extension for Android.

Only a limited number of recommended extensions are supported for Firefox for Android. Look out for updates on the add-ons blog.

Firefox for Android offers a subset of the WebExtensions APIs available to the desktop version of Firefox. Some of these differences are due to the nature of the Android environment and therefore the features Firefox can implement, others are where Firefox for Android does not offer all the desktop features. This article explores these differences and how they affect your add-on development.

A detailed list of the WebExtension APIs supported in Firefox for Android is provided on the Browser support for JavaScript APIs page and details of the supported manifest.json keys are provided on the manifest.json section page.

For information about extension development in Firefox for Android, please see this article.

User interface

Firefox for Android offers a streamlined version of the UI found in desktop Firefox, ensuring Firefox offers an enjoyable and engaging experience on mobile. Some differences relate to how the Android UI differs from the desktop UIs found in Linux, Mac OS, and Windows. For example, Android does not support a windowing environment, and devices do not usually include a physical keyboard from which keyboard shortcuts can be issued. Other differences relate to optimizing usability on smaller mobile device screens.

UI API and manifest.json key differences

As a result of the UI differences, extensions for Firefox for Android do not support the following APIs and manifest.json keys:

  • chrome_url_overrides and chrome_settings_overrides manifest.json keys, which means you cannot add custom home and new tab pages.
  • commands and the related commands manifest.json key, as Android tablets and smartphones do not usually have a physical keyboard from which ‘commands’ can be issued.
  • omnibox and the related omnibox manifest.json key, which means you cannot provide custom address bar suggestions.
  • menus, which means you cannot add options to context menus.
  • sidebarAction and the related sidebar_action manifest.json key, due to the limited screen real estate on Android devices sidebars, such as the browser history, are presented in full browser tabs. Where possible, you should move any sidebar content to tabs.

Other related API and manifest.json key differences

There are some other related features that are not supported, these are:

  • bookmarks, which means you cannot manipulate the user’s bookmarks, although the user can do this themselves through the UI.
  • history, which means you cannot search or manipulate the history of browsed pages.
  • sessions, which means you cannot list and restore tabs that have been closed while the browser has been running.
  • windows, as there is only one Firefox on Android ‘window’, and the browser cannot open or otherwise manipulate additional browser windows.

Developer tools for Firefox for Android are provided through remote debugging mechanisms over USB or Wi-Fi that connect to the WebIDE on a desktop. Therefore, Firefox for Android does not provide any built-in developer tools and its extensions do not support the APIs to extend the developer tools:

Effect on your add-on UI

You cannot reveal your add-on through a sidebar or context menu. However, you can expose your extension as an option under the Add-ons item in the browser menu or as an address bar button.

Depending on the manifest version used by your app, you add an option under the Add-ons item in the browser menu:

You can also use an address bar button (through the manifest.json page_action key and pageAction API), remembering that this button is hidden by default and must be shown programmatically.

The features of pageAction in Firefox for Android differ slightly from the desktop version.

The manifest.json key page_action lets you define the button icon and a popup. You then have use of pageAction.show() and pageAction.hide(); however, once ‘shown’, the address bar button is visible in all tabs (unlike the desktop behavior, where the button is shown only for a specified tab.) You can hide the pageAction using pageAction.hide() on a tab (say, for example, you wish to hide your extension’s page action icon in about:addons or about:memory tabs)

You can set a listener to pageAction.onClicked(). pageAction.setPopup() and pageAction.getPopup() are also available, so you can update the popup or create a popup once the add-on is running.

Also, in pageAction, browserAction, and action popup content opens as an overlay, covering the browser window until the user closes the overlay.

You can also manipulate tabs on Firefox for Android. The tabs API enables you to perform most of the actions you can on the desktop, the main exceptions are:

  • zoom features, Firefox for Android has one zoom level only, which the user can override with a pinch gesture on the page.
  • features related to selecting and moving tabs, again as these features are not supported on Android.
  • the ability to detect a tab’s language or muted status.

Permissions

Permissions to use certain WebExtension APIs must be requested in the manifest.json file. On the desktop version of Firefox users are warned when an extension requests a permission and are given the option to deny the add-on that permission. However, on Firefox for Android permissions are granted automatically and the user isn’t given the option to deny them. It is currently planned to resolve this issue in Firefox 57.

Other notes

At the time of writing there was an issue with storage.sync() and data is not synchronized with the user’s Firefox account from Firefox for Android. More details can be found in bug 1316442.