Hover Link

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

Was ist Hover Link?

Hover Link ist eine Chrome-Erweiterung, die von connerb entwickelt wurde, und ihr Hauptmerkmal ist "When hovering over short url link or any link it will show the final destination URL.".

Erweiterungsscreenshots

screenshot

Hover Link-Erweiterungs-CRX-Datei herunterladen

Laden Sie Hover Link-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Hover Link Hover Link
ID ggbpdjpocpnohglmhmppdkimpoiklegb
Offizielle URL https://chrome.google.com/webstore/detail/hover-link/ggbpdjpocpnohglmhmppdkimpoiklegb
Beschreibung When hovering over short url link or any link it will show the final destination URL.
Dateigröße 60.52 KB
Installationsanzahl 423
Aktuelle Version 1.0
Letztes Update 2014-10-06
Veröffentlichungsdatum 2014-10-06
Bewertung 2.44/5 Insgesamt 9 Bewertungen
Entwickler connerb
Zahlungsart free
Erweiterungswebsite http://www.connerb.com
Unterstützte Sprachen 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"
    }
}