-
Notifications
You must be signed in to change notification settings - Fork 44
/
manifest.json
46 lines (46 loc) · 1.26 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
{
"name": "Brief",
"version": "2.7.3",
"author": "Denis Lisov",
"homepage_url": "https://github.com/brief-rss/brief",
"manifest_version": 2,
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "69.0"
}
},
"default_locale": "en",
"permissions": ["<all_urls>", "menus", "bookmarks",
"storage", "unlimitedStorage", "downloads", "tabs", "notifications",
"webRequest", "webRequestBlocking"],
"background": {
"page": "background.xhtml"
},
"browser_action": {
"browser_style": true,
"default_icon": {
"16": "icons/brief-icon-16.png",
"32": "icons/brief-icon-32.png",
"64": "icons/brief-icon-64.png"
},
"default_title": "Brief"
},
"page_action": {
"default_icon": "icons/brief.svg",
"default_title": "Subscribe",
"default_popup": "/ui/subscribe/subscribe.xhtml",
"browser_style": true
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+D"
}
}
},
"options_ui": {
"page": "/ui/options/options.xhtml",
"browser_style": true
}
}