Fluentbe Annotation Tool

Fluentbe Annotation Tool

The plugin allows you to draw over shared content during a lesson on Fluentbe Classroom.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Fluentbe Annotation Tool",
  "version": "0.5",
  "description": "The plugin allows you to draw over shared content during a lesson on Fluentbe Classroom.",
  "short_name": "Fluentbe",
  "action": {
    "default_title": "Fluentbe Annotation Tool"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/main.css"
      ],
      "js": [
        "js/main.js"
      ]
    }
  ],
  "icons": {
    "16": "images/icon-16x16.png",
    "48": "images/icon-48x48.png",
    "128": "images/icon-128x128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "activeTab"
  ]
}