Plugin groups config

Section "plugin_groups" in user.json. Allows to add grouping to the Plugins menu, e.g. to put all "HTML …" and "CSS …" menu items into "Web" submenu. Example:

  1. "plugin_groups": {
  2. "CSS .+": "Web",
  3. "HTML .+": "Web",
  4. "JS .+": "Web",
  5. "Config.+": "Config",
  6. "Option.+": "Config",
  7. },
  • Key name: regular expression for the first part of menu name. E.g. if menu name in install.inf is "CSS Utils\Misc\Action", then first part is "CSS Utils".
  • Key value: group name, it can be with "\" char to make several levels.