-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
53 lines (53 loc) · 1.59 KB
/
manifest.json
File metadata and controls
53 lines (53 loc) · 1.59 KB
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
52
53
{
"manifest_version": 3,
"name": "__MSG_extName__",
"version": "1.8.0",
"description": "__MSG_extDescription__",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsB/ASka2UH8m13JY41hjh+qQedVEKoFDQDVbS4AfJx3Fz1Pr/pBqtc3/fWwYnkkUdPdtaae+275LD8tJD5IEt862bqacWwz1soq8pEli39nF6mZ2xbBLXTNOu/xlb9stiJL+86Ozk2kEVIFMszZYBksZHaQ0WLepvOmQyeZUDMMFlcFj6x2kqfi3Lxuk8MSYpjqTlLu6ByYuf+GWg02tnHG1N3WKX+BMVJbnir5f+39UecRhNmXi+i8nQUXe7SBPTccNRjVlQyJZXipqE+3Utw/bZ2U7r5zVTMEdkqQeaVCKZNPJEoBzDVkRyGZ7QBUs47wUKiw1n/iC5+eifVXhbQIDAQAB",
"default_locale": "en",
"permissions": [
"sidePanel",
"identity",
"storage",
"alarms",
"activeTab",
"tabs"
],
"oauth2": {
"client_id": "59717546581-2k63hjsm3pjvci32c7pqtdaj9a7vhhjg.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/gmail.settings.basic",
"https://www.googleapis.com/auth/gmail.labels",
"https://www.googleapis.com/auth/gmail.modify"
]
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"side_panel": {
"default_path": "src/sidepanel/index.html"
},
"content_scripts": [
{
"matches": ["https://mail.google.com/*"],
"js": ["content.js"],
"run_at": "document_idle"
}
],
"action": {
"default_title": "__MSG_extName__",
"default_icon": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
}