aboutsummaryrefslogtreecommitdiff
path: root/src/tools/jwt-parser/index.ts
diff options
context:
space:
mode:
authorGravatar Corentin Thomasset <corentin.thomasset74@gmail.com> 2023-01-13 13:59:27 +0100
committerGravatar Corentin Thomasset <corentin.thomasset74@gmail.com> 2023-01-13 14:02:44 +0100
commitf52f7a845c34ce7da57b11c17d261733be89554f (patch)
tree6fd78f5d5bfd6bebe4a26367381baef45c7d7a22 /src/tools/jwt-parser/index.ts
parentacc7f0a586c64500c5f720e70cdbccf9bffe76d9 (diff)
downloadit-tools-f52f7a845c34ce7da57b11c17d261733be89554f.tar.gz
it-tools-f52f7a845c34ce7da57b11c17d261733be89554f.tar.zst
it-tools-f52f7a845c34ce7da57b11c17d261733be89554f.zip
refactor(jwt-parser): simplified code
Diffstat (limited to 'src/tools/jwt-parser/index.ts')
-rw-r--r--src/tools/jwt-parser/index.ts20
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,
});