Clickable Links

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

Qu'est-ce que Clickable Links ?

Clickable Links est une extension Chrome développée par https://www.laurentvw.com, et sa fonction principale est "Turns unclickable urls & email addresses into clickable ones. We linkify them!".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Clickable Links

Téléchargez les fichiers d'extension Clickable Links au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Clickable Links is a Chrome extension that solves the common problem of unclickable URLs on certain websites by automatically converting them into clickable links. 

The extension supports various URI schemes such as http://, https://, ftp://, file://, magnet: and email addresses, making them accessible with a single click. This eliminates the need to copy and paste links, thus saving you time.

Also works with incomplete urls where the "http://"-part isn't included.

To try out the extension, visit this page for some examples: https://www.laurentvw.com/project/clickable-links

New since v2.7:
- Several bug fixes related to url matching
- Added support for file:// and magnet: uri schemes
- Options: An option to allow links to be opened in a new tab                    

Informations de Base sur l'Extension

Nom Clickable Links Clickable Links
ID mgamelhnfokapndfdodnmfiningckjia
URL Officiel https://chromewebstore.google.com/detail/clickable-links/mgamelhnfokapndfdodnmfiningckjia
Description Turns unclickable urls & email addresses into clickable ones. We linkify them!
Taille du Fichier 57.51 KB
Nombre d'Installations 33,298
Version Actuelle 2.9
Dernière Mise à Jour 2023-04-26
Date de Publication 2014-09-29
Évaluation 3.85/5 Total 188 Évaluations
Développeur https://www.laurentvw.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.laurentvw.com/project/clickable-links
URL de la Page de Politique de Confidentialité http://www.laurentvw.com/project/clickable-links
Langues Prises en Charge en-US
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": [
                ""
            ],
            "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"
            ]
        }
    ]
}