Pinned Jitsi Room

Pinned Jitsi Room

With Pinned Jitsi Room, you can create a pinned tab for your frequently used Jitsi rooms, and quickly switch to the tab whenever you need to join the room.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Pinned Jitsi Room",
  "short_name": "Jitsi Pin",
  "author": "Vito Ferri",
  "version": "1.2.0",
  "description": "Go to the pinned Jitsi Room tab. If it doesn't exist, it's created.",
  "icons": {
    "32": "icons/icon-32.png",
    "48": "icons/icon-48.png",
    "64": "icons/icon-64.png",
    "128": "icons/icon-128.png"
  },
  "web_accessible_resources": [
    "icons/*"
  ],
  "permissions": [
    "tabs",
    "storage",
    "*://meet.jit.si/*"
  ],
  "browser_action": {
    "default_icon": {
      "32": "icons/icon-32.png"
    },
    "default_title": "Pinned Jitsi Room",
    "default_area": "navbar"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+Shift+J"
      }
    }
  },
  "options_ui": {
    "page": "options/options.html",
    "browser_style": true
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}