-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
48 lines (48 loc) · 1.08 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"manifest_version": 3,
"name": "Personalized New Tab",
"description": "Customize new tab experience to stay update on favorite feed",
"permissions": [
"storage"
],
"version": "1.5",
"options_page": "options.html",
"action": {
"default_title": "Personalized New Tab",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches":[
"https://feeds.feedburner.com/eset/blog",
"https://securityaffairs.co/wordpress/feed",
"https://www.darkreading.com/rss_simple.asp",
"https://www.darkreading.com/rss_simple.asp",
"https://www.prlog.org/*"
],
"css": [
"css/index.css",
"css/todo.css"
],
"js": [
"js/jquery-3.3.1.js",
"js/app.js",
"js/purify.min.js",
"js/popup.js",
"js/todo.js",
"js/options.js"
]
}
],
"icons": {
"16": "icon16x16.png",
"32": "icon32x32.png"
},
"chrome_url_overrides": {
"newtab": "index.html"
},
"offline_enabled": true,
"background": {
"service_worker": "js/background.js"
}
}