feat(new tool): Outlook Safelink Decoder

Fix #897
This commit is contained in:
sharevb 2024-03-03 09:30:30 +01:00 committed by ShareVB
parent a07806cd15
commit 73deeb30e4
5 changed files with 91 additions and 0 deletions

View file

@ -0,0 +1,12 @@
import { Mailbox } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'Outlook Safelink decoder',
path: '/safelink-decoder',
description: 'Decode Outlook SafeLink links',
keywords: ['outlook', 'safelink', 'decoder'],
component: () => import('./safelink-decoder.vue'),
icon: Mailbox,
createdAt: new Date('2024-02-25'),
});