-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
40 lines (40 loc) · 916 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": "Monochrome Theme for Gmail",
"version": "1.0",
"description": "A modern and minimalistic Monochrome theme for Gmail.",
"author": "jessedi0n",
"permissions": [
"activeTab"
],
"icons": {
"16": "icons/gmail-mono.png",
"48": "icons/gmail-mono.png",
"128": "icons/gmail-mono.png"
},
"content_scripts": [
{
"matches": [
"https://mail.google.com/*"
],
"css": [
"styles.css"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"icons/*"
],
"matches": [
"<all_urls>"
],
"use_dynamic_url": true
}
]
}