-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
35 lines (35 loc) · 931 Bytes
/
manifest.json
File metadata and controls
35 lines (35 loc) · 931 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
{
"chrome_url_overrides": {
"newtab": "newtab.html"
},
"content_security_policy": "script-src 'self'; object-src 'self'",
"description": "Replaces the default new tab page with a stylized and a fully customizable page with links to your most visited websites",
"icons": {
"16": "img/icon16.png",
"128": "img/icon128.png"
},
"browser_action": {
"128":"img/icon_128.png"
},
"author": "Daniel Lvovsky",
"manifest_version": 2,
"minimum_chrome_version": "69",
"name": "New Tab - DIAL",
"options_page": "options/options.html",
"version": "2.0.0",
"short_name": "DIAL",
"default_locale": "en",
"permissions": [
"topSites",
"management",
"bookmarks",
"storage",
"sessions",
"tabs",
"*://*/*"
],
"background": {
"page": "newtab.html",
"persistent": true
}
}