Hover Link

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

What is Hover Link?

Hover Link is a Chrome extension developed by connerb, and its main feature is "When hovering over short url link or any link it will show the final destination URL.".

Extension Screenshots

screenshot

Download Hover Link Extension CRX File

Download Hover Link extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Hover Link Hover Link
ID ggbpdjpocpnohglmhmppdkimpoiklegb
Official URL 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.
File Size 60.52 KB
Installation Count 423
Current Version 1.0
Last Updated 2014-10-06
Publish Date 2014-10-06
Rating 2.44/5 Total 9 Ratings
Developer connerb
Payment Type free
Extension Website http://www.connerb.com
Supported Languages 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"
    }
}