forked from ibillingsley/HumbleNewTabPage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
38 lines (38 loc) · 834 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
{
"name": "Humble New Tab Page",
"version": "1.22",
"minimum_chrome_version": "37",
"manifest_version": 2,
"description": "Redesigned new tab page featuring your bookmarks, apps, most visited, recently closed, and weather in a custom layout.",
"icons": {
"128": "icon_128.png",
"48": "icon_48.png",
"16": "icon_16.png"
},
"permissions": [
"bookmarks",
"chrome://favicon/",
"topSites",
"management",
"tabs",
"fontSettings",
"sessions"
],
"chrome_url_overrides":
{
"newtab": "newtab.html"
},
"background" : {
"scripts" : ["background.js"],
"persistent" : true
},
"options_page": "newtab.html#options",
"options_ui": {
"page": "newtab.html#options",
"chrome_style": false,
"open_in_tab": true
},
"web_accessible_resources": [
"newtab.html"
]
}