Steemed Phish

Steemed Phish

A Chrome extension that will warn you if you are being lured into a fake Steemit website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Steemed Phish",
  "description": "A Chrome extension that will warn you if you are being lured into a fake Steemit website.",
  "version": "0.0.32",
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "permissions": [
    "tabs",
    "http://*/*",
    "idle"
  ],
  "browser_action": {
    "default_icon": "images/icon2-48-grey.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "128": "images/icon2-128-grey.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "*://*/*"
      ],
      "all_frames": true,
      "css": [
        "css/overrideSteemit.css"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ]
}