-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
40 lines (40 loc) · 917 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
{
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "52.0"
}
},
"manifest_version": 2,
"name": "Tabmarks",
"version": "1.0.0beta4",
"description": "Web Extension for handling groups of tabs persisted as bookmarks",
"homepage_url": "https://github.com/hupf/tabmarks",
"author": "Mathis Hofer",
"icons": {
"48": "assets/icons/tabmarks.svg"
},
"permissions": [
"bookmarks",
"storage",
"tabs"
],
"background": {
"scripts": [
"src/background/index.js"
]
},
"browser_action": {
"browser_style": true,
"default_icon": "assets/icons/tabmarks.svg",
"default_title": "Tabmarks",
"default_popup": "src/default-popup/default-popup.html"
},
"options_ui": {
"browser_style": true,
"page": "src/options/options.html"
},
"web_accessible_resources": [
"assets/icons/tabmarks.svg"
]
}