-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
41 lines (41 loc) · 903 Bytes
/
manifest.json
File metadata and controls
41 lines (41 loc) · 903 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
38
39
40
41
{
"manifest_version": 2,
"name": "RDEX Dashboard",
"version": "2.0.0",
"description": "A minimalist new tab dashboard with modern UI",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"chrome_url_overrides": {
"newtab": "src/index.html"
},
"browser_action": {
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"default_title": "RDEX Dashboard"
},
"permissions": [
"storage",
"tabs",
"notifications",
"contextMenus"
],
"content_security_policy": "script-src 'self' https://api.quotable.io; object-src 'self'",
"background": {
"scripts": [
"src/js/background.js"
],
"persistent": false
},
"applications": {
"gecko": {
"id": "rdex@rd927.com",
"strict_min_version": "109.0"
}
}
}