PunyFIX

PunyFIX

Protects Google Chrome against Phishing Attacks using PunyCODE.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "PunyFIX",
  "description": "Protects Google Chrome against Phishing Attacks using PunyCODE.",
  "version": "0.1",
  "author": "Rodrigo dos Santos Silva",
  "icons": {
    "16": "punyfix_16.png",
    "32": "punyfix_32.png",
    "48": "punyfix_48.png",
    "128": "punyfix_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "02.js",
        "01.js"
      ]
    }
  ],
  "permissions": [
    "activeTab"
  ]
}