Conferfly Extension

Conferfly Extension

All-in-one video conferencing optimization toolkit for Zoom, Microsoft Teams, Google Meet, and more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Conferfly Extension",
  "version": "1.5.9",
  "short_name": "Conferfly",
  "author": "Conferfly",
  "description": "All-in-one video conferencing optimization toolkit for Zoom, Microsoft Teams, Google Meet, and more.",
  "action": {
    "default_title": "Conferfly",
    "default_icon": "img/logo.png"
  },
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "icons": {
    "128": "img/logo128.png"
  },
  "permissions": [
    "tabs",
    "background",
    "storage",
    "alarms",
    "power",
    "webNavigation"
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.webex.com/*"
      ],
      "js": [
        "js/main.js",
        "js/injected.js"
      ],
      "css": [
        "css/main.css"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/main.js",
        "js/injected.js"
      ],
      "css": [
        "css/main.css"
      ],
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "js/options.js",
        "js/main.js",
        "js/injected.js",
        "img/logo.png",
        "css/main.css"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": []
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "externally_connectable": {
    "matches": [
      "https://conferfly.com/*",
      "https://conferfly.dev/*",
      "http://localhost:8080/*"
    ]
  }
}