-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathmanifest.json
More file actions
42 lines (42 loc) · 882 Bytes
/
manifest.json
File metadata and controls
42 lines (42 loc) · 882 Bytes
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
{
"manifest_version": 3,
"name": "Jupyter Coder",
"version": "0.2.0.0",
"description": "Capture data in Jupyter Notebook cells and send to a remote server.",
"icons": {
"32": "icons/flow_64.png",
"48": "icons/flow_128.png",
"128": "icons/flow_256.png"
},
"permissions": [
"storage"
],
"action": {
"default_popup": "options/options.html"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*://*.jupyter.org/*",
"*://localhost:*/*",
"*://127.0.0.1:*/*"
],
"js": [
"src/api.js",
"src/state.js",
"src/preferences.js",
"src/utility.js",
"src/animation.js",
"src/diff.js",
"src/content.js"
],
"css": [
"options/styles.css"
],
"run_at": "document_end"
}
]
}