-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathmanifest.json
executable file
·92 lines (92 loc) · 2.43 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "Paper Memory",
"version": "1.0.0",
"manifest_version": 3,
"description": "Automatically record papers and their codes from Arxiv, OpenReview & more! Organize your library with tags, links and quick notes.",
"homepage_url": "https://papermemory.org",
"icons": {
"192": "icons/favicon-192x192.png"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"background": {
"service_worker": "src/background/background.js"
},
"action": {
"default_icon": "icons/favicon-192x192.png",
"default_title": "PaperMemory",
"default_popup": "src/popup/min/popup.min.html"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+E",
"linux": "Ctrl+Shift+M"
},
"description": "Open PaperMemory's Popup"
},
"manualParsing": {
"suggested_key": {
"default": "Ctrl+Shift+P"
},
"description": "Manually trigger the parsing of a paper; only available if you have disabled auto-parsing in the menu"
},
"downloadPdf": {
"suggested_key": {
"default": "Ctrl+Shift+S"
},
"description": "Download the pdf file for the current paper into your PaperMemoryStore"
}
},
"options_ui": {
"page": "src/options/options.html",
"open_in_tab": true
},
"permissions": [
"<all_urls>",
"activeTab",
"storage",
"unlimitedStorage",
"downloads",
"downloads.open",
"scripting"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"run_at": "document_start",
"js": [
"src/shared/min/jquery.min.js",
"src/shared/js/utils/logTrace.js",
"src/shared/js/utils/miniquery.js",
"src/shared/js/utils/config.js",
"src/shared/js/utils/functions.js",
"src/shared/js/utils/octokit.bundle.js",
"src/shared/js/utils/sync.js",
"src/shared/js/utils/data.js",
"src/shared/js/utils/paper.js",
"src/shared/js/utils/state.js",
"src/shared/js/utils/bibtexParser.js",
"src/shared/js/utils/parsers.js",
"src/content_scripts/content_script.js"
],
"css": [
"src/shared/css/loader.css",
"src/content_scripts/content_script.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"src/data/*.json"
],
"matches": [
"<all_urls>"
]
}
]
}