No Opener, No Phishers

No Opener, No Phishers

Reduce the risk of falling victim to phishing attacks.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "No Opener, No Phishers",
  "version": "2",
  "description": "Reduce the risk of falling victim to phishing attacks.",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/background.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "icons": {
    "16": "images/icon-16x16.png",
    "19": "images/icon-19x19.png",
    "48": "images/icon-48x48.png",
    "128": "images/icon-128x128.png",
    "130": "images/icon-130x130.png",
    "550": "images/icon-550x550.png"
  },
  "browser_action": {
    "default_icon": "images/icon-16x16.png"
  }
}