-
Notifications
You must be signed in to change notification settings - Fork 10
/
manifest.json
36 lines (36 loc) · 958 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
{
"manifest_version": 2,
"name": "Google Chat Themes",
"description": "Change google chat theme to dark mode, slack mode or make your own",
"version": "0.0.2",
"content_scripts": [
{
"matches": [
"https://chat.google.com/*",
"https://mail.google.com/chat/*"
],
"all_frames": true,
"js": [
"./src/content.js"
],
"run_at": "document_end"
}
],
"page_action": {
"default_icon": {
"16": "images/heart.png",
"24": "images/heart.png",
"32": "images/heart.png"
},
"default_title": "Google Chat Theme Customizer",
"default_popup": "src/popup/popup.html"
},
"background": {
"scripts": ["src/background.js"],
"persistent": false
},
"permissions": [
"declarativeContent",
"storage"
]
}