LinkTips

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

Was ist LinkTips?

LinkTips ist eine Chrome-Erweiterung, die von Nate Ribose entwickelt wurde, und ihr Hauptmerkmal ist "Show URLs in all link title tooltips and allow custom title tooltip appearance.".

Erweiterungsscreenshots

screenshot
screenshot

LinkTips-Erweiterungs-CRX-Datei herunterladen

Laden Sie LinkTips-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name LinkTips LinkTips
ID eihlofapoahdelmmdphpobogokfmdmbl
Offizielle URL https://chromewebstore.google.com/detail/linktips/eihlofapoahdelmmdphpobogokfmdmbl
Beschreibung Show URLs in all link title tooltips and allow custom title tooltip appearance.
Dateigröße 50.59 KB
Installationsanzahl 220
Aktuelle Version 0.1.1
Letztes Update 2014-01-20
Veröffentlichungsdatum 2014-01-19
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Nate Ribose
Zahlungsart free
Unterstützte Sprachen 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"
        ]
    }
}