Tabnabbing Fighter:Phishing Attack Protection

Tabnabbing Fighter:Phishing Attack Protection

Protects you from Tabnabbing 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": "Tabnabbing Fighter:Phishing Attack Protection",
  "short_name": "Tabnabbing Fighter",
  "version": "1.1",
  "description": "Protects you from Tabnabbing phishing attacks",
  "icons": {
    "16": "images/16_logo.png",
    "48": "images/48_logo.png",
    "128": "images/128_logo.png"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/jquery.min.js",
        "js/messenger.js",
        "js/messenger-theme-future.js",
        "js/tn-injected-script.js"
      ],
      "css": [
        "css/messenger.css",
        "css/messenger-theme-future.css"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "browser_action": {
    "default_icon": {
      "19": "images/19_logo.png",
      "38": "images/38_logo.png"
    },
    "default_title": "Tabnabbing",
    "default_popup": "html/tab-nabbing.html"
  },
  "background": {
    "page": "html/background.html",
    "persistent": true
  },
  "web_accessible_resources": [
    "images/*"
  ]
}