Trellix DLP Endpoint Chrome Extension

Trellix DLP Endpoint Chrome Extension

Trellix DLP Chrome 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": 2,
  "name": "Trellix DLP Endpoint Chrome Extension",
  "version": "2020.01.30.4",
  "description": "Trellix DLP Chrome 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": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_start",
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "webRequest",
    "nativeMessaging",
    "*://*/*"
  ]
}