{
  "specVersion": 2,
  "id": "com.example.localized-workbench",
  "name": { "$t": "plugin.name" },
  "version": "1.0.0",
  "entry": "entry.js",
  "author": "Example Author",
  "description": { "$t": "plugin.description" },
  "localization": {
    "defaultLocale": "en",
    "resources": {
      "en": "locales/en.json",
      "zh-CN": "locales/zh-CN.json"
    }
  },
  "permissions": ["generate", "input"],
  "contributes": {
    "inputActions": [
      {
        "id": "create-summary",
        "label": { "$t": "actions.createSummary" }
      }
    ],
    "htmlFragments": [
      {
        "id": "workbench-panel",
        "src": "ui/panel.html",
        "mount": "/chat/body/end"
      }
    ],
    "settings": {
      "schema": [
        {
          "type": "info",
          "text": { "$t": "settings.info" },
          "icon": "info"
        },
        {
          "key": "enabled",
          "type": "switch",
          "label": { "$t": "settings.enabled" },
          "default": true
        },
        {
          "key": "contentLanguage",
          "type": "select",
          "label": { "$t": "settings.contentLanguage" },
          "default": "conversation",
          "options": [
            {
              "value": "conversation",
              "label": { "$t": "settings.contentLanguage.conversation" }
            },
            {
              "value": "app",
              "label": { "$t": "settings.contentLanguage.app" }
            }
          ]
        }
      ]
    }
  }
}
