Proper Menubar for Firefox

Proper Menubar for Firefox

Add the best menu bar to get easy and fast access to all your useful browser options and Google products!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_name__",
  "short_name": "Proper Menubar",
  "version": "1.2.5.1resigned1",
  "description": "__MSG_description__",
  "homepage_url": "https://www.stefanvd.net/support/",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "background": {
    "page": "background.html"
  },
  "web_accessible_resources": [
    "images/Slice1.png",
    "images/Slice2.png",
    "images/Slice3.png",
    "images/Slice4.png",
    "images/Slice5.png",
    "images/Slice6.png",
    "css/body.css"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "exclude_matches": [
        "*://*.stefanvd.net/project/proper-menubar/browser/options.html"
      ],
      "css": [
        "css/body.css"
      ],
      "js": [
        "js/constants.js",
        "js/content.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.stefanvd.net/project/proper-menubar/browser/options.html"
      ],
      "js": [
        "js/constants.js",
        "js/options.js"
      ],
      "run_at": "document_end"
    }
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+M",
        "mac": "MacCtrl+Shift+M"
      }
    },
    "toggle-feature-propermenubar": {
      "suggested_key": {
        "default": "Ctrl+Shift+P",
        "mac": "MacCtrl+Shift+P"
      },
      "description": "__MSG_titelshortproper__"
    }
  },
  "browser_action": {
    "browser_style": false,
    "default_icon": {
      "19": "icons/icon1.png",
      "38": "icons/[email protected]"
    },
    "default_title": "__MSG_name__",
    "default_popup": "popup.html",
    "theme_icons": [
      {
        "light": "icons/icon1-light.png",
        "dark": "icons/icon1.png",
        "size": 19
      },
      {
        "light": "icons/[email protected]",
        "dark": "icons/[email protected]",
        "size": 38
      }
    ]
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "permissions": [
    "contextMenus",
    "tabs",
    "http://*/*",
    "https://*/*",
    "storage",
    "notifications"
  ],
  "optional_permissions": [
    "clipboardWrite",
    "clipboardRead",
    "bookmarks"
  ],
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "49.0a1"
    }
  }
}