forked from linsage/gitlab-treeview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
executable file
·44 lines (44 loc) · 978 Bytes
/
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
{
"name": "Gitlab File Tree",
"version": "1.0",
"manifest_version": 2,
"author": "ChuckRay",
"description": "🎄File treeview for Gitlab",
"homepage_url": "https://github.com/Chuck-Ray/gitlab-file-tree",
"permissions": [
"storage"
],
"icons": {
"16": "images/gitlab.png",
"48": "images/gitlab.png",
"128": "images/gitlab.png"
},
"background": {
"scripts": ["background.js"],
"persistent": false
},
"browser_action": {
"default_icon": {
"19": "images/gitlab.png",
"38": "images/gitlab.png"
},
"default_title": "Gitlab File Tree"
},
"web_accessible_resources": ["css/*", "fonts/*"],
"content_scripts": [{
"matches": [
"<all_urls>"
],
"css": [
"css/font-awesome.css",
"css/main.css"
],
"js": [
"js/jquery-1.12.4.min.js",
"js/jquery.ztree.all.min.js",
"js/jquery.ztree.exhide.min.js",
"main.js"
],
"run_at": "document_start"
}]
}