Linkify

Linkify

Automatically transform pasted URLs into links.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Linkify",
  "version": "21.4.27",
  "description": "Automatically transform pasted URLs into links.",
  "homepage_url": "https://github.com/pento/linkify",
  "manifest_version": 2,
  "minimum_chrome_version": "74",
  "applications": {
    "gecko": {
      "id": "{a7f5bd94-1e41-4cbb-a49b-e2e10a30587e}",
      "strict_min_version": "67.0"
    }
  },
  "icons": {
    "16": "/images/linkify-ico-16.png",
    "48": "/images/linkify-ico-48.png",
    "128": "/images/linkify-ico-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "/js/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "<all_urls>"
  ]
}