diff --git a/src/utils/ContextMenus.ts b/src/utils/ContextMenus.ts index c271491..6617dab 100644 --- a/src/utils/ContextMenus.ts +++ b/src/utils/ContextMenus.ts @@ -37,6 +37,15 @@ export default { icon: "mdiIdentifier", }, }, + { + label: "Copy Raw Text", + onClick: () => { + navigator.clipboard.writeText(message.content); + }, + iconProps: { + icon: "mdiRaw", + }, + }, ]; if (canDeleteMessage) {