Application Menu

Application Menu

A WebExtension which adds the old application menu from Firefox 4–28 to the Firefox Quantum title bar.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "applications": {
    "gecko": {
      "id": "app-menu@exe-boss",
      "strict_min_version": "60.0a1"
    }
  },
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "version": "0.1.9resigned1",
  "author": "ExE Boss",
  "description": "__MSG_description__",
  "default_locale": "en",
  "permissions": [
    "activeTab",
    "clipboardRead",
    "clipboardWrite",
    "contextualIdentities",
    "cookies",
    "downloads",
    "storage"
  ],
  "icons": {
    "16": "themes/pastel-svg/[email protected]",
    "24": "themes/pastel-svg/[email protected]",
    "32": "themes/pastel-svg/[email protected]",
    "48": "themes/pastel-svg/[email protected]",
    "64": "themes/pastel-svg/[email protected]",
    "72": "themes/pastel-svg/[email protected]",
    "96": "themes/pastel-svg/[email protected]",
    "128": "themes/pastel-svg/[email protected]",
    "256": "themes/pastel-svg/[email protected]"
  },
  "background": {
    "page": "background.xhtml"
  },
  "options_ui": {
    "browser_style": true,
    "page": "options/options.xhtml"
  },
  "browser_action": {
    "browser_style": true,
    "default_title": "__MSG_browserAction__",
    "default_popup": "popup/popup.xhtml",
    "default_area": "tabstrip",
    "default_icon": "themes/photon/firefox.svg"
  }
}