Trellix DLP Endpoint Extension

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

Co to jest Trellix DLP Endpoint Extension?

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

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Trellix DLP Endpoint Extension

Pobierz pliki rozszerzeń Trellix 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

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Trellix DLP Endpoint Extension Trellix DLP Endpoint Extension
ID cokbpgemipiebgbmnnlfboefilmdlonm
Oficjalny URL https://chromewebstore.google.com/detail/trellix-dlp-endpoint-exte/cokbpgemipiebgbmnnlfboefilmdlonm
Opis Trellix DLP Extension monitors address bar URL and helps to protect corporate data uploads
Rozmiar pliku 20.42 KB
Liczba instalacji 6,000,000
Aktualna Wersja 1.21
Ostatnia Aktualizacja 2023-09-03
Data Publikacji 2023-03-03
Ocena 1.83/5 Łącznie 6 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": 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": [
        "*:\/\/*\/*",
        ""
    ]
}