Allurt - Secure screen sharing on google meet

Allurt - Secure screen sharing on google meet

Allurt lets you securely review confidential tabs in your browser before sharing screen on google meet

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Allurt - Secure screen sharing on google meet",
  "description": "Allurt lets you securely review confidential tabs in your browser before sharing screen on google meet",
  "version": "1.7.0",
  "background": {
    "service_worker": "background/background.js"
  },
  "permissions": [
    "tabs",
    "storage",
    "scripting",
    "contentSettings",
    "bookmarks"
  ],
  "host_permissions": [
    "*://meet.google.com/*"
  ],
  "icons": {
    "16": "assets/allurt48.png",
    "48": "assets/allurt48.png",
    "128": "assets/allurt128.png"
  },
  "action": {
    "default_icon": {
      "16": "assets/allurt48.png",
      "24": "assets/allurt48.png",
      "32": "assets/allurt48.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://meet.google.com/*"
      ],
      "js": [
        "popup/sweetalert.js",
        "content.js"
      ],
      "css": [
        "css/popup.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/warning.png",
        "assets/nyan-cat.gif"
      ],
      "matches": [
        "*://meet.google.com/*"
      ]
    }
  ]
}