-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
40 lines (38 loc) · 873 Bytes
/
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,
"name": "otp-fetcher-extension",
"version": "1.0",
"description": "Interact with Gmail API",
"permissions": [
"scripting",
"identity",
"storage",
"activeTab",
"clipboardRead",
"https://mail.google.com/",
"https://www.googleapis.com/"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "data/icons/glasses-svgrepo-com.png"
}
},
"content_scripts": [
{
"matches": ["https://*/*"],
"run_at": "document_start",
"js": ["popup.js"]
}
],
"web_accessible_resources": [
{
"resources": ["popup.js", "api.js", "client.js", "api_child.js"],
"matches": ["https://*/*"]
}
],
"oauth2": {
"client_id": "<Enter your oauth(chrome extension)client id>",
"scopes": ["https://www.googleapis.com/auth/gmail.readonly"]
}
}