-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
46 lines (46 loc) · 1.26 KB
/
manifest.json
File metadata and controls
46 lines (46 loc) · 1.26 KB
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
{
"required_api_version": "2",
"name": "2FAuth",
"description": "Retrieve 2FA codes from a 2FAuth instance",
"developer_name": "David Waring",
"icon": "images/icon.png",
"options": {
"query_debounce": 0.3
},
"preferences": [
{
"id": "2fauth_kw",
"type": "keyword",
"name": "2FAuth",
"default_value": "2fa"
},
{
"id": "2fauth_url",
"type": "input",
"name": "2FAuth URL",
"description": "The URL for your 2FAuth Instance (ex https://2fauth.domain.com)",
"default_value": ""
},
{
"id": "2fauth_pat",
"type": "text",
"name": "Personal Access Token",
"description": "Create a PAT from your 2FAuth account settings (under OAuth)",
"default_value": ""
},
{
"id": "2fauth_expiry",
"type": "text",
"name": "Cache Refresh Frequency (hours)",
"description": "Set how often the account cache should be automatically refreshed. The cache can be manually refreshed using the sync action.",
"default_value": "24"
},
{
"id": "2fauth_recent_max",
"type": "text",
"name": "Display Recent Accounts",
"description": "Set the maxiumum number of recent accounts to display.",
"default_value": "5"
}
]
}