Website Risk Analyzer

Analyze your website for vulnerabilities and data breaches

Что такое Website Risk Analyzer?

Website Risk Analyzer - это расширение Chrome, разработанное HUMAN Security, и его основная функция - "Analyze your website for vulnerabilities and data breaches".

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

screenshot

Скачать файл CRX расширения Website Risk Analyzer

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

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

                        Website Risk Analyzer is a free browser extension that allows web application developers and information security teams to analyze website code for JavaScript vulnerabilities, PII sniffing and suspicious behaviour that could expose the site to digital skimming, formjacking and Magecart attacks.                    

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

Название Website Risk Analyzer Website Risk Analyzer
ID apcjcfdafnbllnjjeljjanlbfmjkebho
Официальный URL https://chromewebstore.google.com/detail/website-risk-analyzer/apcjcfdafnbllnjjeljjanlbfmjkebho
Описание Analyze your website for vulnerabilities and data breaches
Размер файла 662 KB
Количество установок 297
Текущая Версия 2.1.3
Последнее Обновление 2023-11-26
Дата публикации 2021-04-07
Рейтинг 5.00/5 Всего 11 оценок
Разработчик HUMAN Security
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.humansecurity.com/
URL страницы помощи https://www.perimeterx.com/website-risk-analyzer-get-more-insights/
URL страницы политики конфиденциальности https://www.humansecurity.com/privacy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "WRA",
    "name": "Website Risk Analyzer",
    "version": "2.1.3",
    "manifest_version": 2,
    "description": "Analyze your website for vulnerabilities and data breaches",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icons": {
            "16": "images\/human-logo16.png",
            "32": "images\/human-logo32.png",
            "48": "images\/human-logo48.png"
        }
    },
    "background": {
        "scripts": [
            "\/static\/js\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "\/static\/js\/content.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "inject.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "images\/human-logo16.png",
        "32": "images\/human-logo32.png",
        "48": "images\/human-logo48.png"
    },
    "permissions": [
        "storage",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "background",
        "tabs",
        "webRequest",
        "webRequestBlocking",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "web_accessible_resources": [
        "\/static\/css\/content.css",
        "\/static\/js\/cd.js"
    ],
    "content_security_policy": "script-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk=' 'sha256-InasXifkZsoVnnwWQyE2\/yu030SQQa5wJnPi9rCD8Jk=' https:\/\/www.google-analytics.com; object-src 'self'"
}