Hover Link

When hovering over short url link or any link it will show the final destination URL.

Qu'est-ce que Hover Link ?

Hover Link est une extension Chrome développée par connerb, et sa fonction principale est "When hovering over short url link or any link it will show the final destination URL.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Hover Link

Téléchargez les fichiers d'extension Hover Link 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

                        Hover Link is a simple extension that allows you to view and copy short URL and normal URL links on websites. For the short URL links it will display their destination URL as well.                    

Informations de Base sur l'Extension

Nom Hover Link Hover Link
ID ggbpdjpocpnohglmhmppdkimpoiklegb
URL Officiel https://chrome.google.com/webstore/detail/hover-link/ggbpdjpocpnohglmhmppdkimpoiklegb
Description When hovering over short url link or any link it will show the final destination URL.
Taille du Fichier 60.52 KB
Nombre d'Installations 423
Version Actuelle 1.0
Dernière Mise à Jour 2014-10-06
Date de Publication 2014-10-06
Évaluation 2.44/5 Total 9 Évaluations
Développeur connerb
Type de Paiement free
Site Web de l'Extension http://www.connerb.com
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hover Link",
    "description": "When hovering over short url link or any link it will show the final destination URL.",
    "version": "1.0",
    "manifest_version": 2,
    "icons": {
        "48": "icons\/48x48.png"
    },
    "background": {
        "page": "html\/background.html"
    },
    "permissions": [
        "*:\/\/*\/*",
        "storage",
        "webRequest",
        "webRequestBlocking"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/jquery-2.1.1.min.js",
                "js\/script.js"
            ],
            "css": [
                "css\/script.css"
            ],
            "all_frames": false,
            "run_at": "document_end"
        }
    ],
    "options_page": "html\/options.html",
    "page_action": {
        "default_icon": {
            "19": "icons\/19x19.png"
        },
        "default_title": "Hover Link",
        "default_popup": "html\/options.html"
    }
}