Enhanced iFrame Protection

Enhanced iFrame Protection

Detect and provide verbose warnings for embedded iframe elements in order to protect against Browser-In-The-Browser attacks.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Enhanced iFrame Protection",
  "version": "1.0.2",
  "description": "Detect and provide verbose warnings for embedded iframe elements in order to protect against Browser-In-The-Browser attacks.",
  "author": "@odacavo",
  "icons": {
    "16": "/src/icons/icon16.png",
    "48": "/src/icons/icon48.png",
    "128": "/src/icons/icon128.png"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/src/content.js"
      ]
    }
  ]
}