BBB Popup Chat

BBB Popup Chat

Inoffizielles Tool für Vollbild Chat in BBB.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "2021.4.29",
  "name": "BBB Popup Chat",
  "description": "Inoffizielles Tool für Vollbild Chat in BBB.",
  "browser_action": {
    "default_icon": "icons/icon.png",
    "default_title": "Vollbild BBB Chat",
    "browser_style": false,
    "default_popup": "static/popup/index.html"
  },
  "icons": {
    "16": "icons/16x16.png",
    "24": "icons/24x24.png",
    "32": "icons/32x32.png",
    "48": "icons/48x48.png",
    "64": "icons/64x64.png",
    "128": "icons/128x128.png"
  },
  "background": {
    "scripts": [
      "generated/background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "storage"
  ],
  "author": "Robert Steffen Stündl",
  "content_scripts": [
    {
      "matches": [
        "https://*/html5client/join*"
      ],
      "js": [
        "generated/manager.js",
        "alertify/alertify.js"
      ],
      "css": [
        "alertify/css/alertify.css",
        "alertify/css/themes/default.css",
        "css/global.css",
        "css/alertify.default.css",
        "css/alertify.core.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "icons/icon.png"
  ]
}