-
Notifications
You must be signed in to change notification settings - Fork 0
/
vss-extension.json
52 lines (52 loc) · 1.12 KB
/
vss-extension.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
{
"manifestVersion": 1,
"id": "git-permissions-viewer",
"version": "0.0.39",
"name": "Git Permissions Viewer",
"description": "Git Permissions Viewer allows you to see who has what type of access to your project git repositories.",
"publisher": "kevinwu",
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"icons": {
"default": "images/icons8-car.png"
},
"contributions": [
{
"id": "ucsb.kevinwu.gitPermissionsViewer",
"type": "ms.vss-web.hub",
"description": "Git Permission Viewer",
"targets": ["ms.vss-code-web.code-hub-group"],
"properties": {
"name": "Git Permissions",
"order": 99,
"uri": "index.html"
}
}
],
"scopes": ["vso.code", "vso.project", "vso.identity"],
"files": [
{
"path": "index.html",
"addressable": true
},
{
"path": "styles.css",
"addressable": true
},
{
"path": "scripts",
"addressable": true
},
{
"path": "libs",
"addressable": true
},
{
"path": "images/icons8-car.png",
"addressable": true
}
]
}