Enterprise Policy Generator

Enterprise Policy Generator

The Enterprise Policy Engine allows administrators to configure Firefox via a configuration file. The Enterprise Policy Generator helps to create the configuration file.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extension_name__",
  "version": "5.1.0",
  "description": "__MSG_extension_description__",
  "icons": {
    "48": "images/icon.svg"
  },
  "developer": {
    "name": "Sören Hentzschel",
    "url": "https://www.soeren-hentzschel.at/firefox-webextensions/enterprise-policy-generator/?utm_campaign=webext&utm_term=enterprise"
  },
  "background": {
    "scripts": [
      "js/core/background.js"
    ]
  },
  "browser_action": {
    "browser_style": false,
    "default_icon": "images/icon.svg",
    "default_title": "__MSG_extension_name__"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Shift+F10"
      }
    }
  },
  "options_ui": {
    "page": "html/configurator.html",
    "open_in_tab": true,
    "browser_style": false
  },
  "permissions": [
    "menus",
    "storage"
  ],
  "optional_permissions": [
    "downloads"
  ],
  "default_locale": "en",
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "68.0"
    }
  }
}