diff --git a/README.md b/README.md index c4b7318..2673f8f 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,8 @@ To make the process of customizing from the template as smooth as possible, we r - In `assets/displayData.json`: - If your extension has an icon, update the `icon` value to point towards the icon file (for example: `assets/icon.svg`) + - Update the `moreInfoUrl` field to web URL to a page where users can find out more information about you / your organization / your extension. + - Update the `supportUrl` field to web URL to a support page where users can request help and report issues with your extension. - Update the `en` entry of `localizedDisplayInfo` so that: - `displayName` contains a human-readable name for your extension (i.e. `Your Extension Name`). diff --git a/assets/displayData.json b/assets/displayData.json index 8fa745b..d2579e3 100644 --- a/assets/displayData.json +++ b/assets/displayData.json @@ -1,5 +1,7 @@ { "icon": "", + "moreInfoUrl": "", + "supportUrl": "", "localizedDisplayInfo": { "en": { "displayName": "Paranext Extension Template", diff --git a/manifest.json b/manifest.json index 2c9c40b..5db7442 100644 --- a/manifest.json +++ b/manifest.json @@ -5,6 +5,8 @@ "author": "Paranext", "license": "MIT", "main": "src/main.ts", + "extensionDependencies": {}, + "elevatedPrivileges": [], "types": "src/types/paranext-extension-template.d.ts", "menus": "contributions/menus.json", "settings": "contributions/settings.json",