-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.json
39 lines (39 loc) · 980 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
36
37
38
39
{
"name": "papers.labml.ai",
"manifest_version": 3,
"icons": {
"16": "assets/icon16.png",
"48": "assets/icon48.png",
"128": "assets/icon128.png"
},
"version": "1.1.2",
"description": "\uD83D\uDD0E View information about research papers linked from websites you visit.",
"background": {
"service_worker": "js/background.js"
},
"options_ui": {
"page": "html/options.html",
"browser_style": false,
"open_in_tab": true
},
"permissions": [
"activeTab",
"scripting",
"webNavigation",
"storage"
],
"action": {
"default_title": "Papers",
"default_icon": "assets/icon48.png",
"default_popup": "html/popup.html"
},
"host_permissions": [
"<all_urls>"
],
"web_accessible_resources": [
{
"resources": ["assets/font-awesome/*"],
"matches": ["<all_urls>"]
}
]
}