Linkification Chrome

Linkification Chrome

Replaces text urls with links that can be clicked on. This extension is inspired by the Firefox Extension with the same name.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Linkification Chrome",
  "description": "Replaces text urls with links that can be clicked on. This extension is inspired by the Firefox Extension with the same name.",
  "version": "1.1.1",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "jquery-3.1.0.min.js",
        "linkify.min.js",
        "linkify-jquery.min.js",
        "content.js"
      ],
      "run_at": "document_end"
    }
  ]
}