-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy pathmanifest(firefox).json
More file actions
37 lines (37 loc) · 921 Bytes
/
manifest(firefox).json
File metadata and controls
37 lines (37 loc) · 921 Bytes
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
{
"manifest_version": 2,
"name": "MYNT: Material You New Tab",
"version": "3.3.6",
"description": "A Simple New Tab (browser's home page) inspired by Google's 'Material You' design.",
"permissions": [
"search",
"bookmarks",
"https://www.google.com/complete/search?client=*",
"https://duckduckgo.com/ac/?q=*",
"https://search.brave.com/api/suggest?q=*",
"https://*.wikipedia.org/w/api.php?action=opensearch&search=*"
],
"background": {
"scripts": ["scripts/background.js"]
},
"icons": {
"16": "favicon/icon16.png",
"48": "favicon/icon48.png",
"128": "favicon/icon128.png"
},
"browser_action": {
"default_icon": "favicon/icon48.png"
},
"chrome_url_overrides": {
"newtab": "index.html"
},
"incognito": "spanning",
"browser_specific_settings": {
"gecko": {
"id": "{c30c387e-cd01-42b4-b5c7-6af2d820535b}",
"data_collection_permissions": {
"required": ["none"]
}
}
}
}