-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
40 lines (40 loc) · 1.12 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
{
"manifest_version": 3,
"{{chrome}}.key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApx85uwm3V2F5M5dBLzSI9LRaTu93GWtBy8EiJac7P3rk36LToTxlou/v3bp9r3rUggFIAMFo3FMku/h1ewaQgyfA9TL3pKdlW/J3vYRNfcC/hDEDp7l6Swvjb4xU/WYG1X6RdB+lzBNpmJ55FErJyN/z/ka1Hj54hurYLksA6dXYOXoD/CX8wvWlxPgLchgKZOozpsTIT8aQbSLIdsHo5wbb1AKnSg4qR8q3P8O98EmyQsQbVoQ1jbIFpX7FS+5Ily/VgcdcgvhkWDPdTrGXf3txCYENV7gZ7ybHRAyFpOrRR3bG+IyRz5s7N/LtYXK9NN+fY4TDnZtLXOqIfazgcQIDAQAB",
"name": "Notiondipity",
"version": "0.6",
"icons": {
"48": "icon_48.png",
"128": "icon_128.png"
},
"background": {
"{{firefox}}.scripts": [
"src/worker.ts"
],
"{{chrome}}.service_worker": "src/worker.ts"
},
"permissions": [
"tabs",
"identity",
"storage"
],
"action": {
"default_title": "Notiondipity",
"default_popup": "index.html",
"default_icon": {
"48": "icon_48.png",
"128": "icon_128.png"
}
},
"content_scripts": [
{
"matches": ["https://www.notion.so/*"],
"js": ["src/cs.ts"]
}
],
"{{firefox}}.browser_specific_settings": {
"gecko": {
"id": "notiondipity@svana.name"
}
}
}