Examine source code of Phishing EZ

Inspect and view changes in Phishing EZ source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "Phishing EZ",
  "version": "1.1",
  "description": "Easily protect yourself against phishing attempts with warnings for unknown websites with password fields",
  "browser_specific_settings": {
    "gecko": {
      "id": "{a1132759-4ff4-47e5-b3a0-5d81941c3d6c}"
    }
  },
  "permissions": [
    "activeTab",
    "storage",
    "alarms"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "48": "icon.png"
    }
  },
  "icons": {
    "48": "icon.png"
  }
}