-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
51 lines (41 loc) · 1.07 KB
/
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
45
46
47
48
49
50
51
{
"manifest_version": 2,
"name": "StartPage",
"short_name": "StartPage",
"version": "0.1.2",
"description": "StartPage Plugin for Firefox that uses your bookmarks. Customizable with CSS.",
"homepage_url": "https://github.com/metric-dt/startpage",
"developer": {
"name": "Derick Tseng",
"url": "https://github.com/metric-dt"
},
"permissions": [
"bookmarks",
"storage"
],
"browser_action": {
"default_title": "StartPage",
"browser_style": false
},
"omnibox": {
"keyword": "!"
},
"background": {
"page": "src/index.html"
},
"options_ui": {
"page": "src/settings/settings.html",
"open_in_tab": true
},
"chrome_url_overrides" : {
"newtab": "src/index.html"
},
"chrome_settings_overrides": {
"homepage": "src/index.html"
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
}
}