LimaCharlie Sensor

LimaCharlie.io security sensor.

Co to jest LimaCharlie Sensor?

LimaCharlie Sensor to rozszerzenie Chrome opracowane przez https://limacharlie.io, a jego główną funkcją jest „LimaCharlie.io security sensor.”.

Zrzuty ekranu rozszerzenia

Pobierz plik CRX rozszerzenia LimaCharlie Sensor

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

                        LimaCharlie is a SecOps Cloud Platform (SCP) that provides over 100 different security capabilities on-demand and API-first. Endpoint Detection and Response (EDR) is a foundational layer of the platform. This is the Chrome agent which enables monitoring and response as part of the EDR fleet, which includes agents for Windows, Linux, macOS across x86, ARM and MIPS architectures.
Usage of this agent requires a LimaCharlie account with an Organization created. See https://doc.limacharlie.io for details.                    

Podstawowe informacje o rozszerzeniu

Nazwa LimaCharlie Sensor LimaCharlie Sensor
ID ljdgkaegafdgakkjekimaehhneieecki
Oficjalny URL https://chromewebstore.google.com/detail/limacharlie-sensor/ljdgkaegafdgakkjekimaehhneieecki
Opis LimaCharlie.io security sensor.
Rozmiar pliku 119 KB
Liczba instalacji 228
Aktualna Wersja 1.4.0
Ostatnia Aktualizacja 2024-02-14
Data Publikacji 2020-03-11
Deweloper https://limacharlie.io
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://doc.limacharlie.io
Adres URL Strony Polityki Prywatności https://www.limacharlie.io/privacy
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LimaCharlie Sensor",
    "short_name": "LimaCharlie",
    "version": "1.4.0",
    "description": "LimaCharlie.io security sensor.",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "webRequest",
        "identity",
        "identity.email",
        "management",
        "declarativeNetRequestWithHostAccess"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "icons": {
        "128": "images\/icon.png"
    },
    "storage": {
        "managed_schema": "schema.json"
    }
}