-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Expand file tree
/
Copy pathcategories.ts
More file actions
31 lines (28 loc) · 827 Bytes
/
categories.ts
File metadata and controls
31 lines (28 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
export enum ToolCategory {
INPUT = 'input',
NAVIGATION = 'navigation',
EMULATION = 'emulation',
PERFORMANCE = 'performance',
NETWORK = 'network',
DEBUGGING = 'debugging',
EXTENSIONS = 'extensions',
IN_PAGE = 'in-page',
MEMORY = 'memory',
}
export const labels = {
[ToolCategory.INPUT]: 'Input automation',
[ToolCategory.NAVIGATION]: 'Navigation automation',
[ToolCategory.EMULATION]: 'Emulation',
[ToolCategory.PERFORMANCE]: 'Performance',
[ToolCategory.NETWORK]: 'Network',
[ToolCategory.DEBUGGING]: 'Debugging',
[ToolCategory.EXTENSIONS]: 'Extensions',
[ToolCategory.IN_PAGE]: 'In-page tools',
[ToolCategory.MEMORY]: 'Memory',
};
export const OFF_BY_DEFAULT_CATEGORIES = [ToolCategory.EXTENSIONS];