-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
51 lines (51 loc) · 1.06 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
44
45
46
47
48
49
50
51
{
"name": "Gmail Auto BCC",
"description": "Open source automatic cc/bcc for gmail.",
"version": "1.8",
"manifest_version": 3,
"web_accessible_resources": [
{
"resources": [
"src/icons/gray-scale-orange-square-mail.png",
"src/icons/orange-square-mail.png"
],
"matches": [
"https://mail.google.com/*",
"https://inbox.google.com/*"
]
}
],
"content_scripts": [
{
"js": [
"src/gmail.ts"
],
"matches": [
"https://mail.google.com/*",
"https://inbox.google.com/*"
],
"run_at": "document_start"
}
],
"background": {
"service_worker": "src/background.ts",
"type": "module"
},
"host_permissions": [
"https://mail.google.com/",
"https://inbox.google.com/"
],
"permissions": [
"storage"
],
"action": {
"default_icon": {
"128": "src/icons/orange-square-mail.png"
},
"default_title": "Gmail AutoBCC"
},
"icons": {
"128": "src/icons/orange-square-mail.png"
},
"options_page": "index.html"
}