-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmanifest.json
More file actions
28 lines (27 loc) · 782 Bytes
/
manifest.json
File metadata and controls
28 lines (27 loc) · 782 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"name": "MindTabs",
"version": "0.1.3",
"description": "Mind map across your tabs. Smart way to organize your web.",
"icons": {
"16": "/res/image/logo/MindTabs16.png",
"48": "/res/image/logo/MindTabs48.png",
"64": "/res/image/logo/MindTabs64.png",
"128": "/res/image/logo/MindTabs128.png"
},
"browser_action": {
"default_icon": "/res/image/logo/MindTabs64.png"
},
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
"background": {
"scripts": [
"background.js"
]
},
"permissions": [
"storage"
, "tabs"
, "bookmarks"
]
}