-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
45 lines (45 loc) · 1006 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
40
41
42
43
44
45
{
"manifest_version": 2,
"name": "Darker Jupyter",
"description": "Dark Mode for Jupyter Notebooks",
"version": "2.4.2",
"author": "Kent Leo L. Makibulan",
"icons": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"offline_enabled": true,
"permissions": [
"tabs",
"*://*/*.ipynb",
"*://*/*.ipynb?*",
"*://*/tree*",
"*://*/terminals/*",
"storage"
],
"background": {
"scripts": ["storage-clear.js"]
},
"browser_action": {
"default_icon": {
"16": "images/icon16.png",
"24": "images/icon16.png",
"32": "images/icon16.png"
},
"default_title": "Darker Jupyter",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"*://*/*.ipynb",
"*://*/*.ipynb?*",
"*://*/tree*",
"*://*/terminals/*"
],
"css": ["dark.css"],
"run_at": "document_start"
}
]
}