Trellix DLP Endpoint Extension

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

什么是Trellix DLP Endpoint Extension?

Trellix DLP Endpoint Extension是由DLP_Support开发的Chrome扩展程序,该扩展的主要功能是“Trellix DLP Extension monitors address bar URL and helps to protect corporate data uploads”。

扩展截图

screenshot

下载Trellix DLP Endpoint Extension扩展crx文件

下载Trellix DLP Endpoint Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Trellix DLP Extension works in conjunction with Trellix DLP Software to provide data loss protection. This extension monitors websites for URL information and sends content to Trellix DLP Software for analysis.                    

扩展基本信息

名称 Trellix DLP Endpoint Extension Trellix DLP Endpoint Extension
ID cokbpgemipiebgbmnnlfboefilmdlonm
官方URL https://chromewebstore.google.com/detail/trellix-dlp-endpoint-exte/cokbpgemipiebgbmnnlfboefilmdlonm
简介 Trellix DLP Extension monitors address bar URL and helps to protect corporate data uploads
文件大小 20.42 KB
安装次数 6,000,000
当前版本 1.21
更新时间 2023-09-03
上架时间 2023-03-03
评分 1.83/5 共6次评分
开发者 DLP_Support
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://www.trellix.com/en-us/about/legal/privacy.html
支持的语言 en-US
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": [
        "*:\/\/*\/*",
        ""
    ]
}