Website Risk Analyzer

Analyze your website for vulnerabilities and data breaches

什麼是Website Risk Analyzer?

Website Risk Analyzer是由HUMAN Security開發的Chrome擴展程式,該擴展的主要功能是“Analyze your website for vulnerabilities and data breaches”。

擴展截圖

screenshot

下載Website Risk Analyzer擴展crx文件

下載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
官方網址 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'"
}