diff options
| author | Rubén Beltran del Río <954000-rbdr@users.noreply.gitlab.com> | 2020-09-27 16:08:37 +0000 |
|---|---|---|
| committer | Rubén Beltran del Río <954000-rbdr@users.noreply.gitlab.com> | 2020-09-27 16:08:37 +0000 |
| commit | ac259c8645783dcb92fc0eafff166769f5216aa9 (patch) | |
| tree | c1680258245610509b619ffde21777120f94481a /extension/manifest.json | |
| parent | ed9f8fd50086439ff3de12092af2f813763ada91 (diff) | |
| parent | 98342562bd88eccdb4eaeecacf866996b64ce974 (diff) | |
Merge branch 'main' into 'server'
# Conflicts:
# .gitignore
Diffstat (limited to 'extension/manifest.json')
| -rw-r--r-- | extension/manifest.json | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/extension/manifest.json b/extension/manifest.json new file mode 100644 index 0000000..df3ecc4 --- /dev/null +++ b/extension/manifest.json @@ -0,0 +1,25 @@ +{ + "manifest_version": 2, + "name": "Junction", + "version": "1.0.0", + "description": "Jump into an audio call on any URL", + + "permissions": [ + "activeTab" + ], + + "icons": { + "48": "icons/junction.png" + }, + + "background": { + "scripts": ["junction.js"] + }, + + "browser_action": { + "default_icon": { + "16": "icons/action-16.png", + "32": "icons/action-32.png" + } + } +} |