McAfee DLP Endpoint Extension

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

Co to jest McAfee DLP Endpoint Extension?

McAfee DLP Endpoint Extension to rozszerzenie Chrome opracowane przez DLP_Support, a jego główną funkcją jest „McAfee DLP Extension monitors address bar URL and helps to protect corporate data uploads.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia McAfee DLP Endpoint Extension

Pobierz pliki rozszerzeń McAfee DLP Endpoint Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa McAfee DLP Endpoint Extension McAfee DLP Endpoint Extension
ID fhkbechcecepmohakoafeoobnliolhei
Oficjalny URL https://chromewebstore.google.com/detail/mcafee-dlp-endpoint-exten/fhkbechcecepmohakoafeoobnliolhei
Opis McAfee DLP Extension monitors address bar URL and helps to protect corporate data uploads.
Rozmiar pliku 13.78 KB
Liczba instalacji 5,287,597
Aktualna Wersja 2021.09.21.1
Ostatnia Aktualizacja 2021-09-22
Data Publikacji 2021-09-22
Ocena 1.15/5 Łącznie 27 Oceny
Deweloper DLP_Support
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://www.trellix.com/en-us/about/legal/privacy.html
Obsługiwane Języki 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"
    ]
}