Clickable Links

Clickable Links

Turns unclickable urls & email addresses into clickable ones. We linkify them!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Clickable Links",
  "version": "2.9",
  "manifest_version": 3,
  "description": "Turns unclickable urls & email addresses into clickable ones. We linkify them!",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "optional_permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "*://*.google.com/*",
        "*://*.google.ca/*",
        "*://*.google.co.uk/*",
        "*://*.google.com.au/*",
        "*://*.google.co.jp/*",
        "*://*.google.de/*",
        "*://*.google.fr/*",
        "*://*.google.be/*",
        "*://*.google.nl/*",
        "*://*.bing.com/*",
        "*://*.acidtests.org/*",
        "*://twitter.com/*"
      ],
      "js": [
        "jquery.min.js",
        "jquery.ba-replacetext.js",
        "content.js"
      ]
    }
  ]
}