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'"
}