Website Security Scanner

Website Security Scanner

Website Security Scanner Tool to scan and check the safety of any website. Checking over 50+ databases.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Website Security Scanner",
  "short_name": "Scanner",
  "version": "0.0.2",
  "action": {
    "default_popup": "index.html",
    "default_title": "Security Scanner"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "js": [
        "checker.js"
      ]
    }
  ],
  "description": "Website Security Scanner Tool to scan and check the safety of any website. Checking over 50+ databases.",
  "host_permissions": [
    "https://*/*"
  ],
  "icons": {
    "128": "logo.png"
  },
  "manifest_version": 3,
  "permissions": [
    "activeTab",
    "tabs"
  ]
}