Hover Link

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

Apa itu Hover Link?

Hover Link adalah ekstensi Chrome yang dikembangkan oleh connerb, dan fitur utamanya adalah "When hovering over short url link or any link it will show the final destination URL.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Hover Link

Unduh file ekstensi Hover Link dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Hover Link Hover Link
ID ggbpdjpocpnohglmhmppdkimpoiklegb
URL Resmi https://chrome.google.com/webstore/detail/hover-link/ggbpdjpocpnohglmhmppdkimpoiklegb
Deskripsi When hovering over short url link or any link it will show the final destination URL.
Ukuran File 60.52 KB
Jumlah Instalasi 423
Versi Saat Ini 1.0
Terakhir Diperbarui 2014-10-06
Tanggal Publikasi 2014-10-06
Penilaian 2.44/5 Total 9 Penilaian
Pengembang connerb
Tipe Pembayaran free
Situs Ekstensi http://www.connerb.com
Bahasa yang Didukung 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"
    }
}