diff --git a/src/utils/manifest.ts b/src/utils/manifest.ts index e3ed3a0..a1a6716 100644 --- a/src/utils/manifest.ts +++ b/src/utils/manifest.ts @@ -29,7 +29,7 @@ export const buildManifest = (handlers: Handler[], config: Config): ManifestWith manifest.config.push({ key: handler.id, type: 'checkbox', - title: `${handler.languages.map(language => flag(language) + ' ' + language.toUpperCase()).join(', ')} | ${handler.label}`, + title: `${handler.languages.map(language => `${flag(language)} ${language.toUpperCase()}`).join(', ')} | ${handler.label} (${handler.contentTypes.join(', ')})`, ...(handler.id in config && { default: 'checked' }), }); });