-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
49 lines (43 loc) · 1009 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
41
42
43
44
45
46
47
48
49
{
"name": "Discord System-Wide PTT",
"version": "0.2",
"description": "Push-to-talk from anywhere with the Discord web client.",
"manifest_version": 2,
"icons": {
"16": "brw_ptt_16.png",
"32": "brw_ptt_32.png",
"48": "brw_ptt_48.png",
"128": "brw_ptt_128.png"
},
"browser_action": {
"default_title": "Discord System-Wide PTT",
"default_popup": "popup.html",
"default_icon": {
"16": "brw_ptt_16.png",
"32": "brw_ptt_32.png",
"48": "brw_ptt_48.png",
"128": "brw_ptt_128.png"
}
},
"background": {
"scripts": ["background.js"],
"persistent": false
},
"content_scripts": [{
"matches": [
"https://discordapp.com/*",
"https://discord.com/*"
],
"run_at": "document_start",
"js": ["content.js"]
}],
"commands": {
"ptt": {
"suggested_key": {
"default": "Ctrl+Space"
},
"description": "Toggle PTT in the Discord web client"
}
},
"permissions": ["storage"]
}