Trellix DLP Endpoint Extension

Trellix DLP Endpoint Extension

Trellix DLP Extension monitors address bar URL and helps to protect corporate data uploads

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Trellix DLP Endpoint Extension",
  "version": "1.21",
  "description": "Trellix DLP Extension monitors address bar URL and helps to protect corporate data uploads",
  "icons": {
    "16": "Trellix16.png",
    "32": "Trellix32.png",
    "128": "Trellix128.png"
  },
  "author": "Trellix LLC",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_end",
      "all_frames": true,
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "webRequest",
    "scripting",
    "webNavigation",
    "webRequestBlocking",
    "storage",
    "nativeMessaging"
  ],
  "host_permissions": [
    "*://*/*",
    "<all_urls>"
  ]
}