-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
37 lines (37 loc) · 928 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
{
"manifest_version": 2,
"name": "Make Google Chat like Slack",
"description": "An extension to extend the Google Chat to have the basic functionality that Slack has.",
"version": "0.1.1",
"icons": {
"16": "resources/90.png",
"48": "resources/90.png",
"128": "resources/128.png"
},
"browser_action": {
"default_icon": {
"16": "resources/90.png",
"48": "resources/90.png",
"128": "resources/128.png"
}
},
"permissions": [
"https://chat.google.com/*",
"https://mail.google.com/*"
],
"content_scripts": [
{
"js": [
"bundle.min.js"
],
"matches": [
"https://chat.google.com/*",
"https://mail.google.com/*"
],
"all_frames": true,
"run_at": "document_end"
}
],
"content_security_policy": "script-src 'self'; object-src 'self'",
"homepage_url": "https://github.com/SanCoder-Q/slackify-gchat"
}