-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmanifest.json
38 lines (38 loc) · 1.09 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
{
"manifest_version": 3,
"name": "CodeClimbers | The homepage for time tracking",
"description": "Track the time you spend coding and improve productivity. Private, local, and open source!",
"homepage_url": "https://codeclimbers.io/",
"icons": {
"16": "public/images/codeclimbers-16.png",
"48": "public/images/codeclimbers-48.png",
"128": "public/images/codeclimbers-128.png"
},
"action": {
"default_popup": "src/routes/popup/index.html",
"default_title": "CodeClimbers | The homepage for time tracking",
"default_icon": {
"38": "public/images/codeclimbers-38.png"
}
},
"options_ui": {
"page": "src/routes/options/index.html"
},
"background": {
"service_worker": "src/routes/background/background.ts",
"type": "module"
},
"chrome_url_overrides": {
"newtab": "src/routes/home/index.html"
},
"permissions": ["idle", "storage", "alarms", "tabs"],
"web_accessible_resources": [
{
"resources": [
"public/images/codeclimbers-128.png",
"public/images/codeclimbers-38.png"
],
"matches": []
}
]
}