McAfee DLP Endpoint Extension
McAfee DLP Extension monitors address bar URL and helps to protect corporate data uploads.
什么是McAfee DLP Endpoint Extension?
McAfee DLP Endpoint Extension是由DLP_Support开发的Chrome扩展程序,该扩展的主要功能是“McAfee DLP Extension monitors address bar URL and helps to protect corporate data uploads.”。
扩展截图
下载McAfee DLP Endpoint Extension扩展crx文件
下载McAfee DLP Endpoint Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
McAfee DLP Extension works in conjunction with McAfee DLP Software to provide data loss protection. This extension monitors websites for URL information and sends content to McAfee DLP Software for analysis.
扩展基本信息
名称 | McAfee DLP Endpoint Extension |
ID | fhkbechcecepmohakoafeoobnliolhei |
官方URL | https://chromewebstore.google.com/detail/mcafee-dlp-endpoint-exten/fhkbechcecepmohakoafeoobnliolhei |
简介 | McAfee DLP Extension monitors address bar URL and helps to protect corporate data uploads. |
文件大小 | 13.78 KB |
安装次数 | 5,287,597 |
当前版本 | 2021.09.21.1 |
更新时间 | 2021-09-22 |
上架时间 | 2021-09-22 |
评分 | 1.15/5 共27次评分 |
开发者 | 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": 2, "name": "McAfee DLP Endpoint Extension", "version": "2021.09.21.1", "description": "McAfee DLP Extension monitors address bar URL and helps to protect corporate data uploads.", "icons": { "16": "mcafee16.png", "32": "mcafee32.png", "128": "mcafee128.png" }, "author": "McAfee LLC", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*", "file:\/\/*" ], "run_at": "document_end", "all_frames": true, "js": [ "content.js" ] } ], "permissions": [ "activeTab", "tabs", "webRequest", "*:\/\/*\/*", "webNavigation", "nativeMessaging" ] } |