-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
31 lines (31 loc) · 856 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
{
"manifest_version": 3,
"name": "New Tab Unlimited Bookmarks",
"description": "Add unlimited bookmarks to the Chrome start page. Works with existing bookmarks folders.",
"version": "3.0",
"author": {
"email": "[email protected]"
},
"homepage_url": "https://github.com/serbanghita/newtab-bookmarks-chrome-extension",
"permissions": ["bookmarks", "storage", "favicon"],
"action": {
"default_popup": "popup/popup.html",
"default_icon": "images/icon-16.png"
},
"icons": {
"16": "images/icon-16.png",
"32": "images/icon-32.png",
"48": "images/icon-48.png",
"128": "images/icon-128.png"
},
"chrome_url_overrides" : {
"newtab": "newtab/newtab.html"
},
"web_accessible_resources": [
{
"resources": ["_favicon/*"],
"matches": ["<all_urls>"],
"extension_ids": ["*"]
}
]
}