Link Me Not

Link Me Not

Tries to identify and points out malicious links on the pages you visit.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Link Me Not",
  "version": "0.1.1.0",
  "description": "Tries to identify and points out malicious links on the pages you visit.",
  "icons": {
    "16": "icons/small.jpg",
    "48": "icons/medium.jpg",
    "128": "icons/large.jpg"
  },
  "permissions": [
    "tabs",
    "http://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*"
      ],
      "js": [
        "js/linkmenot.js"
      ],
      "css": [
        "css/linkmenot.css"
      ],
      "run_at": "document_end"
    }
  ]
}