Mailto Landmines

Mailto Landmines

Shows a landmine next to any naked 'mailto:' link on a webpage. So you can avoid them.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Mailto Landmines",
  "description": "Shows a landmine next to any naked 'mailto:' link on a webpage. So you can avoid them.",
  "version": "0.0.1",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery-1.7.1.min.js",
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "http://*/*",
    "https://*/*",
    "tabs"
  ],
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "web_accessible_resources": [
    "images/mailto_img.png"
  ],
  "manifest_version": 2
}