diff options
Diffstat (limited to 'src/tools/jwt-parser/index.ts')
-rw-r--r-- | src/tools/jwt-parser/index.ts | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/src/tools/jwt-parser/index.ts b/src/tools/jwt-parser/index.ts index dcce4f1..7249ace 100644 --- a/src/tools/jwt-parser/index.ts +++ b/src/tools/jwt-parser/index.ts @@ -4,8 +4,24 @@ import { defineTool } from '../tool'; export const tool = defineTool({ name: 'JWT parser', path: '/jwt-parser', - description: 'Parse a JWT (JSON Web Token) to display its content.', - keywords: ['jwt', 'parser'], + description: 'Parse and decode your JSON Web Token (jwt) and display its content.', + keywords: [ + 'jwt', + 'parser', + 'decode', + 'typ', + 'alg', + 'iss', + 'sub', + 'aud', + 'exp', + 'nbf', + 'iat', + 'jti', + 'json', + 'web', + 'token', + ], component: () => import('./jwt-parser.vue'), icon: Key, }); |