-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
64 lines (64 loc) · 1.69 KB
/
Copy pathmanifest.json
File metadata and controls
64 lines (64 loc) · 1.69 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
54
55
56
57
58
59
60
61
62
63
64
{
"manifest_version": 3,
"name": "Green Inbox",
"short_name": "Ginbox",
"version": "1.0",
"oauth2": {
"client_id": "Put your client id here",
"scopes": [
"https://www.googleapis.com/auth/userinfo.email",
"https://www.googleapis.com/auth/gmail.modify"
]
},
"author": "Arpit Kesharwani (rivatus3@gmail.com)",
"description": "A chrome extension that helps you keep inbox clean, by scheduling to delete unread and selected emails after a span of 30 days, timely mail deletion also reduces carbon footprint.",
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"all_frames": true,
"css": [
"css/gab.css"
],
"js": [
"js/jquery-1.8.1.min.js",
"js/gmail.js"
],
"matches": [
"https://mail.google.com/mail/*"
],
"run_at": "document_end"
}
],
"icons": {
"128": "icon/icon_128.png",
"16": "icon/icon_16.png",
"48": "icon/icon_48.png"
},
"web_accessible_resources": [
{
"resources": [
"images/sprite-content-black.png",
"icon/a.png",
"icon/b.png",
"dist/gmailJsLoader.js",
"dist/extension.js"
],
"matches": [
"*://*/*"
]
}
],
"options_page": "options.html",
"permissions": [
"identity",
"identity.email",
"tabs",
"storage",
"alarms"
],
"host_permissions": [
"*://*/"
]
}