-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
manifest.json
110 lines (110 loc) · 3.65 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"required_api_version": "^2.0.0",
"name": "GitHub",
"description": "Interact with your GitHub account",
"developer_name": "Bruno Paz",
"icon": "images/icon.png",
"options": {
"query_debounce": 1
},
"preferences": [
{
"id": "kw_public_repos",
"type": "keyword",
"name": "GitHub: Search Repositories",
"description": "Search public repos on GitHub",
"default_value": "gh:search_repos"
},
{
"id": "kw_public_users",
"type": "keyword",
"name": "GitHub: Search Users",
"description": "Search users on GitHub",
"default_value": "gh:search:users"
},
{
"id": "kw_gists",
"type": "keyword",
"name": "GitHub: My Gists",
"description": "List your GitHub Gists",
"default_value": "gh:gists"
},
{
"id": "kw_user_organizations",
"type": "keyword",
"name": "GitHub: My Organizations",
"description": "List your GitHub organizations",
"default_value": "gh:user:orgs"
},
{
"id": "kw_issues_assigned",
"type": "keyword",
"name": "GitHub: My Assigned Issues",
"description": "List the issues that were assigned to you on GitHub",
"default_value": "gh:issues:assigned"
},
{
"id": "kw_issues_created",
"type": "keyword",
"name": "GitHub: My Created Issues",
"description": "List the issues that were created by you on GitHub",
"default_value": "gh:issues:created"
},
{
"id": "kw_user_pulls_assigned",
"type": "keyword",
"name": "GitHub: My Assigned Pull Requests",
"description": "List Assigned Pull Requests on GitHub",
"default_value": "gh:prs:assigned"
},
{
"id": "kw_user_pulls_created",
"type": "keyword",
"name": "GitHub: My Created Pull Requests",
"description": "List the Pull requests you created on GitHub",
"default_value": "gh:prs:created"
},
{
"id": "kw_notifications",
"type": "keyword",
"name": "GitHub: My Notifications",
"description": "Display the most recent notifications on GitHub",
"default_value": "gh:notifications"
},
{
"id": "kw_user_repos",
"type": "keyword",
"name": "GitHub: My Repositories",
"description": "Access to your GitHub repos",
"default_value": "gh:repos"
},
{
"id": "kw_account",
"type": "keyword",
"name": "GitHub: My Account",
"description": "Access to common options from the account settings",
"default_value": "gh:account"
},
{
"id": "kw_docs",
"type": "keyword",
"name": "GitHub: Search Documentation",
"description": "Search on GitHub Documentation",
"default_value": "gh:docs"
},
{
"id": "kw_options",
"type": "keyword",
"name": "GitHub: Extension Options",
"description": "Access extension options",
"default_value": "gh"
},
{
"id": "access_token",
"type": "input",
"name": "GitHub access token",
"description": "The Personal Access token to authenticate on GitHub API",
"default_value": ""
}
]
}