]> git.r.bdr.sh - rbdr/junction/blame - extension/manifest.json
Fix typo
[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
b9a2baf2 7 "permissions": ["activeTab"],
1ed219c8
RBR
8
9 "icons": {
10 "48": "icons/junction.png"
11 },
12
13 "background": {
eaca9f28 14 "scripts": ["junction.js"]
1ed219c8
RBR
15 },
16
17 "browser_action": {
18 "default_icon": {
19 "16": "icons/action-16.png",
20 "32": "icons/action-32.png"
21 }
6393c915
RBR
22 },
23
b9a2baf2 24 "web_accessible_resources": ["sounds/tada.wav"]
1ed219c8 25}