-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
34 lines (29 loc) · 772 Bytes
/
manifest.json
File metadata and controls
34 lines (29 loc) · 772 Bytes
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
{
"manifest_version": 2,
"name": "TabTree",
"short_name": "TabTree",
"description": "Tab workflow tracker",
"version": "1.0.0",
"homepage_url": "https://github.com/roaclark/tab-tree",
"icons": {
"16": "images/icon-smooth-16.png",
"48": "images/icon-smooth-48.png",
"128": "images/icon-smooth-128.png"
},
"browser_action": {
"default_icon": "images/icon.png"
},
"background": {
"scripts": ["lib/jquery-1.11.1.min.js",
"model/graph-structure.js",
"model/link-graph.js",
"background.js"]
},
"permissions": [
"tabs",
"contextMenus",
"storage",
"http://*/*",
"https://*/*"
]
}