-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
34 lines (33 loc) · 797 Bytes
/
manifest.json
File metadata and controls
34 lines (33 loc) · 797 Bytes
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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Gmail Inboxy Date Grouping",
"version": "1.1.0",
"description": "Allows you to group Gmail emails by date",
"manifest_version": 3,
"author": "thefacc",
"content_scripts": [
{
"css": [
"/css/gmail-agent.css"
],
"js": [
"/js/gmail-agent.js"
],
"matches": [
"https://mail.google.com/*"
],
"run_at": "document_end",
"all_frames": true
}
],
"web_accessible_resources": [
{
"resources": [
"/react/*"
],
"matches": [
"<all_urls>"
]
}
]
}