LimaCharlie Sensor

LimaCharlie.io security sensor.

Что такое LimaCharlie Sensor?

LimaCharlie Sensor - это расширение Chrome, разработанное https://limacharlie.io, и его основная функция - "LimaCharlie.io security sensor.".

Снимки экрана расширения

Скачать файл CRX расширения LimaCharlie Sensor

Скачайте файлы расширений LimaCharlie Sensor в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название LimaCharlie Sensor LimaCharlie Sensor
ID ljdgkaegafdgakkjekimaehhneieecki
Официальный URL https://chromewebstore.google.com/detail/limacharlie-sensor/ljdgkaegafdgakkjekimaehhneieecki
Описание LimaCharlie.io security sensor.
Размер файла 119 KB
Количество установок 228
Текущая Версия 1.4.0
Последнее Обновление 2024-02-14
Дата публикации 2020-03-11
Разработчик https://limacharlie.io
Электронная почта [email protected]
Тип оплаты free
URL страницы помощи https://doc.limacharlie.io
URL страницы политики конфиденциальности https://www.limacharlie.io/privacy
Поддерживаемые языки 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"
    }
}