Website Risk Analyzer

Analyze your website for vulnerabilities and data breaches

What is Website Risk Analyzer?

Website Risk Analyzer is a Chrome extension developed by HUMAN Security, and its main feature is "Analyze your website for vulnerabilities and data breaches".

Extension Screenshots

screenshot

Download Website Risk Analyzer Extension CRX File

Download Website Risk Analyzer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Website Risk Analyzer Website Risk Analyzer
ID apcjcfdafnbllnjjeljjanlbfmjkebho
Official URL https://chromewebstore.google.com/detail/website-risk-analyzer/apcjcfdafnbllnjjeljjanlbfmjkebho
Description Analyze your website for vulnerabilities and data breaches
File Size 662 KB
Installation Count 297
Current Version 2.1.3
Last Updated 2023-11-26
Publish Date 2021-04-07
Rating 5.00/5 Total 11 Ratings
Developer HUMAN Security
Email [email protected]
Payment Type free
Extension Website https://www.humansecurity.com/
Help Page URL https://www.perimeterx.com/website-risk-analyzer-get-more-insights/
Privacy Policy Page URL https://www.humansecurity.com/privacy
Supported Languages 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'"
}