]> git.r.bdr.sh - rbdr/junction/blame - extension/manifest.json
Convert to array
[rbdr/junction] / extension / manifest.json
CommitLineData
1ed219c8
RBR
1{
2 "manifest_version": 2,
3 "name": "Junction",
4 "version": "1.0.0",
5 "description": "Jump into an audio call on any URL",
6
7 "permissions": [
8 "activeTab"
9 ],
10
11 "icons": {
12 "48": "icons/junction.png"
13 },
14
15 "background": {
eaca9f28 16 "scripts": ["junction.js"]
1ed219c8
RBR
17 },
18
19 "browser_action": {
20 "default_icon": {
21 "16": "icons/action-16.png",
22 "32": "icons/action-32.png"
23 }
6393c915
RBR
24 },
25
26 "web_accessible_resources": [
27 "sounds/tada.wav"
28 ]
1ed219c8 29}