-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
67 lines (67 loc) · 1.8 KB
/
manifest.json
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"required_api_version": "2",
"name": "Toggl Time Tracker",
"description": "Toggl tracker extension for time management tasks.",
"developer_name": "David Kasakaitis",
"icon": "images/svg/icon.svg",
"options": {
"query_debounce": 0.35
},
"preferences": [
{
"id": "keyword",
"type": "keyword",
"name": "Toggl",
"description": "Toggl Extension",
"default_value": "tgl"
},
{
"id": "workspace",
"type": "input",
"name": "Default Workspace",
"description": "ID of the default workspace you want to use."
},
{
"id": "cache",
"type": "input",
"name": "Cache Location",
"description": "Absolute path to cache location. Defaults to extension location."
},
{
"id": "max_search_results",
"type": "select",
"name": "Maximum number of results.",
"default_value": 10,
"options": [-1, 4, 5, 6, 7, 8, 9, 10, 11, 12]
},
{
"id": "hints",
"type": "select",
"name": "Hints",
"description": "Do you want to see hints to help with usage of the application?",
"default_value": true,
"options": [true, false]
},
{
"id": "api_token",
"type": "input",
"name": "API Token",
"description": "Toggl API token. Will default to environment variable or .togglrc file if not set."
},
{
"id": "expiration",
"type": "input",
"name": "Expiration",
"description": "Custom expiration time for tracker cache. Same as syntax for duration variable. eg. 1d",
"default_value": "7d"
},
{
"id": "report_format",
"type": "select",
"name": "Report Format",
"description": "Default file format to export reports in.",
"default_value": "pdf",
"options": ["pdf", "csv"]
}
]
}