LinkTips

Show URLs in all link title tooltips and allow custom title tooltip appearance.

LinkTips क्या है?

LinkTips Nate Ribose द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Show URLs in all link title tooltips and allow custom title tooltip appearance."।

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

screenshot
screenshot

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

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

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

                        Show URLs in all link title tooltips and allow custom title tooltip appearance.

Rather than moving your focus away from the mouse to see the destination of a URL, this will show the URL in a tooltip near the mouse when you hover over a link.

You can either use your system tooltip (default), or specify a custom tooltip (with completely customizable styles using CSS). You may even have all tooltips appear with the custom tooltip style, too!

This is a Free and Open Source extension. Look at the project on GitHub: https://github.com/nmbook/linktips-chrome                    

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

नाम LinkTips LinkTips
ID eihlofapoahdelmmdphpobogokfmdmbl
आधिकारिक URL https://chromewebstore.google.com/detail/linktips/eihlofapoahdelmmdphpobogokfmdmbl
विवरण Show URLs in all link title tooltips and allow custom title tooltip appearance.
फ़ाइल का आकार 50.59 KB
स्थापना संख्या 220
वर्तमान संस्करण 0.1.1
अंतिम अपडेट 2014-01-20
प्रकाशन तिथि 2014-01-19
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर Nate Ribose
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "LinkTips",
    "author": "Nate Book ",
    "version": "0.1.1",
    "description": "Show URLs in all link title tooltips and allow custom title tooltip appearance.",
    "icons": {
        "16": "linktips16.png",
        "48": "linktips48.png",
        "128": "linktips128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "linktips.css"
            ],
            "js": [
                "jquery.min.js",
                "linktips.js"
            ]
        }
    ],
    "options_page": "options.html",
    "content_security_policy": "default-src 'none'; style-src 'unsafe-inline'; script-src 'self'",
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}