Website Risk Analyzer

Website Risk Analyzer

Analyze your website for vulnerabilities and data breaches

Merlin
Additional files are visible only to premium users

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": [
        "<all_urls>"
      ],
      "js": [
        "/static/js/content.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "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'"
}