Hover Link

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

Hover Link क्या है?

Hover Link connerb द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "When hovering over short url link or any link it will show the final destination URL."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Hover Link एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Hover Link Hover Link
ID ggbpdjpocpnohglmhmppdkimpoiklegb
आधिकारिक URL https://chrome.google.com/webstore/detail/hover-link/ggbpdjpocpnohglmhmppdkimpoiklegb
विवरण When hovering over short url link or any link it will show the final destination URL.
फ़ाइल का आकार 60.52 KB
स्थापना संख्या 423
वर्तमान संस्करण 1.0
अंतिम अपडेट 2014-10-06
प्रकाशन तिथि 2014-10-06
रेटिंग 2.44/5 कुल 9 रेटिंग्स
डेवलपर connerb
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://www.connerb.com
समर्थित भाषाएँ 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"
    }
}