feat(new-tool): keycode info
This commit is contained in:
26
src/tools/keycode-info/index.ts
Normal file
26
src/tools/keycode-info/index.ts
Normal file
@@ -0,0 +1,26 @@
|
||||
import { Keyboard } from '@vicons/tabler';
|
||||
import { defineTool } from '../tool';
|
||||
|
||||
export const tool = defineTool({
|
||||
name: 'Keycode info',
|
||||
path: '/keycode-info',
|
||||
description: 'Find the javascript keycode, code, location and modifiers of any pressed key.',
|
||||
keywords: [
|
||||
'keycode',
|
||||
'info',
|
||||
'code',
|
||||
'javascript',
|
||||
'event',
|
||||
'keycodes',
|
||||
'which',
|
||||
'keyboard',
|
||||
'press',
|
||||
'modifier',
|
||||
'alt',
|
||||
'ctrl',
|
||||
'meta',
|
||||
'shift',
|
||||
],
|
||||
component: () => import('./keycode-info.vue'),
|
||||
icon: Keyboard,
|
||||
});
|
||||
Reference in New Issue
Block a user