-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
43 lines (43 loc) · 1.61 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
{
"name": "Calendar Plus",
"short_name": "Calendar Plus",
"version": "1.4.0",
"description": "Google Calendar extension that provides insights into where your time goes. Includes power user tools, data export and customization",
"author": "Max Patiiuk",
"manifest_version": 3,
"icons": {
"16": "./src/public/images/extension_icon_16x16.png",
"32": "./src/public/images/extension_icon_32x32.png",
"48": "./src/public/images/extension_icon_48x48.png",
"128": "./src/public/images/extension_icon_128x128.png"
},
"action": {
"default_title": "See where your time went"
},
"web_accessible_resources": [
{
"resources": [
"/src/public/images/btn_google_signin_light_normal_web@2x.png"
],
"matches": ["https://calendar.google.com/*"]
}
],
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuldA6s8qQKAdu33VanYX4yhBYnTbMwARskX7rcwvuIKgRPbY41X1mcIDUHKV7pC5sWQ2QuL0EN5U6M57dJhe+veTDDktpWNXeGJtwvPM6HFbwICgD93TkzwBl4Fs+67eFlsmpoHIdWeryyEfIUAgUwsb8DxvQ8OYhVKet1xkqJRRo112iLZ1bn/ZI8P39jT4cc9pMIXSvEKmtzyqNb9l/5WS8F6reqsRGIwZqmr/9fb7CEhyKPzEtXokcfaTygMwF6rJ6530cLUegofpJed4wZfFCCRtok63aqCwQgfypOKWlXCrExTdD6QKP4941dYQMuCg9+wp/GslGwTUd+odGQIDAQAB",
"current_locale": "en",
"permissions": ["identity", "storage"],
"background": {
"service_worker": "./src/dist/background.bundle.js"
},
"content_scripts": [
{
"matches": ["https://calendar.google.com/calendar/u/0/r/*"],
"js": ["./src/dist/main.bundle.js"]
}
],
"cross_origin_embedder_policy": {
"value": "require-corp"
},
"cross_origin_opener_policy": {
"value": "same-origin"
}
}