Hover Link

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

Vad är Hover Link?

Hover Link är en Chrome-tillägg utvecklad av connerb, och dess huvudfunktion är "When hovering over short url link or any link it will show the final destination URL.".

Tilläggsskärmbilder

screenshot

Ladda ner Hover Link-förlängningens CRX-fil

Ladda ner Hover Link-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Hover Link Hover Link
ID ggbpdjpocpnohglmhmppdkimpoiklegb
Officiell webbadress https://chrome.google.com/webstore/detail/hover-link/ggbpdjpocpnohglmhmppdkimpoiklegb
Beskrivning When hovering over short url link or any link it will show the final destination URL.
Filstorlek 60.52 KB
Antal Installationer 423
Aktuell Version 1.0
Senast Uppdaterad 2014-10-06
Publiceringsdatum 2014-10-06
Betyg 2.44/5 Totalt 9 Betyg
Utvecklare connerb
Betalningssätt free
Tilläggswebbplats http://www.connerb.com
Stödda Språk 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"
    }
}