aboutsummaryrefslogtreecommitdiff
path: root/src/tools/user-agent-parser/index.ts
blob: 1ae05d146a413d9ebc7f0a118512473e9e2c03ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import { Browser } from '@vicons/tabler';
import { defineTool } from '../tool';

export const tool = defineTool({
  name: 'User-agent parser',
  path: '/user-agent-parser',
  description: 'Detect and parse Browser, Engine, OS, CPU, and Device type/model from an user-agent string.',
  keywords: ['user', 'agent', 'parser', 'browser', 'engine', 'os', 'cpu', 'device', 'user-agent', 'client'],
  component: () => import('./user-agent-parser.vue'),
  icon: Browser,
  createdAt: new Date('2023-04-06'),
});