Annotate Meet by Denis Sheeran

Annotate Meet by Denis Sheeran

Google Meet Users can now Annotate while Screen Sharing!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Annotate Meet by Denis Sheeran",
  "description": "Google Meet Users can now Annotate while Screen Sharing!",
  "version": "1.0.0",
  "icons": {
    "128": "/img/logo_128.png",
    "512": "/img/logo_512.png"
  },
  "browser_action": {
    "default_icon": "/img/logo_512.png",
    "default_popup": "/pages/popup/index.html"
  },
  "background": {
    "scripts": [
      "/lib/jquery.min.js",
      "/lib/webx.js",
      "/js/background/bg_controller.js",
      "/js/background/main.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "all_frames": true,
      "run_at": "document_start",
      "matches": [
        "https://meet.google.com/*"
      ],
      "js": [
        "/lib/jquery.min.js",
        "/lib/webx.js",
        "/js/content_scripts/cs_controller.js",
        "/js/content_scripts/main.js"
      ]
    }
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+A"
      }
    }
  },
  "permissions": [
    "tabs",
    "windows"
  ],
  "web_accessible_resources": [
    "/*"
  ]
}