Huddle meet

Huddle meet

Huddle01 is a P2P de-centralized video conferencing platform built on blockchain technology. Currently people attending the meeting…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "0.0.3",
  "short_name": "Huddle meet",
  "name": "Huddle meet",
  "action": {},
  "background": {
    "service_worker": "background.bundle.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://app.huddle01.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "EditComponent.css"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "img/icon-16.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "options_page": "options.html",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}