forked from alexis-jaksone/new-tab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
41 lines (41 loc) · 968 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
41
{
"manifest_version": 2,
"name": "Start Page - Date and Time",
"short_name": "intfbing",
"description": "Displays bing.com's daily wallpaper on new tabs as well as date and time and weather widget.",
"version": "0.1.5",
"background": {
"persistent": false,
"scripts" : [
"background.js"
]
},
"chrome_url_overrides": {
"newtab": "data/override/index.html"
},
"permissions": [
"storage",
"chrome://favicon/",
"bookmarks",
"tabs",
"topSites",
"contextMenus",
"*://*/*"
],
"homepage_url": "http://add0n.com/new-tab.html",
"icons": {
"16": "data/icons/16.png",
"32": "data/icons/32.png",
"48": "data/icons/48.png",
"64": "data/icons/64.png",
"128": "data/icons/128.png",
"256": "data/icons/256.png",
"512": "data/icons/512.png"
},
"applications": {
"gecko": {
"id": "{555bcaf2-01a3-4221-988d-96551934e890}",
"strict_min_version": "55.0"
}
}
}