-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
manifest.json
32 lines (32 loc) · 1.03 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
{
"required_api_version": "^2.0.0",
"name": "GitLab",
"description": "Quckly access your GitLab Projects and more.",
"developer_name": "Bruno Paz",
"icon": "images/icon.png",
"options": {
"query_debounce": 0.5
},
"preferences": [
{
"id": "kw",
"type": "keyword",
"name": "GitLab",
"default_value": "glab"
},
{
"id": "url",
"type": "input",
"name": "GitLab url",
"description": "The base url for your GitLab instance. Change this if you are using an On Premise GitLab installation.",
"default_value": "https://gitlab.com"
},
{
"id": "access_token",
"type": "input",
"name": "Personal Access Token",
"description": "The access token required to authenticate on the GitLab API. You can generate it <a href=\"https://gitlab.com/profile/personal_access_tokens\">here</a>",
"default_value": ""
}
]
}