-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
53 lines (45 loc) · 1.05 KB
/
manifest.json
File metadata and controls
53 lines (45 loc) · 1.05 KB
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
52
53
{
"manifest_version": 2,
"name": "New Tab Extension",
"description": "An extension for about:newtab that brings life to the new tab.",
"version": "1.0.2",
"homepage_url": "https://github.com/OldValencia/NewTab",
"chrome_url_overrides": {
"newtab": "index.html"
},
"chrome_settings_overrides": {
"homepage": "index.html"
},
"permissions": [
"storage",
"webRequest",
"bookmarks",
"notifications",
"tabs",
"alarms"
],
"web_accessible_resources": [
"fonts/SFProDisplay-Regular.woff2",
"fonts/SFProDisplay-Regular.woff",
"fonts/SFProDisplay-Regular.ttf"
],
"background": {
"scripts": ["scripts/background-scripts/notifications.js"],
"persistent": true
},
"browser_action": {
"default_icon": "icons/icon-96.png"
},
"icons": {
"48": "icons/icon-48.svg",
"96": "icons/icon-96.png"
},
"browser_specific_settings": {
"gecko": {
"id": "{b1d2f598-e9c7-46e2-b91d-438b14199d58}",
"data_collection_permissions": {
"required": ["none"]
}
}
}
}