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."입니다.

확장 프로그램 스크린샷

screenshot

McAfee DLP Endpoint Extension 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
    ]
}