aboutsummaryrefslogtreecommitdiff
path: root/extension/manifest.json
diff options
context:
space:
mode:
authorRuben Beltran del Rio <ruben@unlimited.pizza>2020-09-27 17:31:21 +0200
committerRuben Beltran del Rio <ruben@unlimited.pizza>2020-09-27 17:31:21 +0200
commit1ed219c8314a0ca1b95ef8593bb608b7659c87a3 (patch)
tree9fd778c197cc44559049c7ed3385a19ecf2f5257 /extension/manifest.json
parent1aefbf569ac489946e2552ce6c10697c67ea55b8 (diff)
Add firefox extensionrbdr-setup-extension
Diffstat (limited to 'extension/manifest.json')
-rw-r--r--extension/manifest.json25
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"
+ }
+ }
+}