Weet for Chrome: Video and Screen recorder

Weet for Chrome: Video and Screen recorder

A picture paints a thousand words. So why send an email or schedule a meeting when you can send a video message.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Weet for Chrome: Video and Screen recorder",
  "description": "A picture paints a thousand words. So why send an email or schedule a meeting when you can send a video message.",
  "version": "3.0.04",
  "manifest_version": 3,
  "icons": {
    "128": "icons/icon_128.png"
  },
  "action": {
    "default_title": "Weet"
  },
  "background": {
    "default_icon": "icons/icon_128.png",
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://app.weet.co/*"
      ],
      "js": [
        "contentScript/mediaControl.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icons/icon_128_v2.png"
      ],
      "matches": [
        "https://speacher.speach-qa.com/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://app.weet.co/*"
    ]
  },
  "permissions": [
    "storage",
    "notifications",
    "contextMenus"
  ]
}