Phish Alerts

Phish Alerts

Protect yourself and your dear ones from Phishing attacks, losing money and identity

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Phish Alerts",
  "description": "Protect yourself and your dear ones from Phishing attacks, losing money and identity",
  "version": "0.0.3",
  "manifest_version": 3,
  "background": {
    "service_worker": "workers/background.js"
  },
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "html/notice.html",
        "html/verified.html",
        "images/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "128": "/images/fishing.png"
  },
  "content_scripts": [
    {
      "js": [
        "js/firebase/firebase-app.js",
        "js/firebase/firebase-firestore.js",
        "js/app.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "match_about_blank": false,
      "all_frames": false,
      "css": [
        "css/notice.css",
        "css/verified.css"
      ]
    }
  ]
}