-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
35 lines (34 loc) · 956 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
32
33
34
35
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Chrome nextcloud news",
"version": "0.1",
"manifest_version": 2,
"default_locale": "en",
"content_security_policy": "script-src 'self' 'unsafe-eval' https://cdnjs.cloudflare.com; object-src 'self'",
"description": "News feed reader based on nextcloud news API.",
"icons": {
"16": "images/reader16.png",
"48": "images/reader48.png",
"128": "images/reader128.png"
},
"homepage_url": "https://github.com/yawks/chrome-news-nextcloud",
"background": {
"page": "background.html"
},
"options_page": "settings.html",
"permissions": [
"tabs",
"http://*/",
"https://*/",
"storage",
"unlimitedStorage",
"notifications",
"webRequest",
"webRequestBlocking"
],
"browser_action": {
"default_icon": "images/reader48.png",
"default_title": "Chrome news nextcloud",
"default_popup": "mainmenu.html"
}
}